Added additional instruction to set destination recipient limit to 1, so it calls program once for each recipient.

This commit is contained in:
urosj 2017-08-02 18:43:59 +02:00
parent ae5b107ec7
commit 2f7e5bd45a
1 changed files with 9 additions and 1 deletions

View File

@ -27,6 +27,10 @@ package main
// autoresponder unix - n n - - pipe // autoresponder unix - n n - - pipe
// flags=Fq user=autoresponder argv=/usr/local/sbin/autoresponder -s ${sender} -r ${recipient} -S ${sasl_username} -C ${client_address} // flags=Fq user=autoresponder argv=/usr/local/sbin/autoresponder -s ${sender} -r ${recipient} -S ${sasl_username} -C ${client_address}
// //
// Set additional postfix parameter:
// postconf -e 'autoresponder_destination_recipient_limit = 1'
// service postfix restart
//
// //
// Written by Uros Juvan <asmpro@gmail.com> 2017 // Written by Uros Juvan <asmpro@gmail.com> 2017
@ -44,7 +48,7 @@ import (
"log/syslog" "log/syslog"
) )
const VERSION = "1.0.0005" const VERSION = "1.0.0006"
const DEBUG = true const DEBUG = true
const RESPONSE_DIR = "/var/spool/autoresponder/responses" const RESPONSE_DIR = "/var/spool/autoresponder/responses"
@ -549,6 +553,10 @@ func main() {
At the end of file append the following two lines: At the end of file append the following two lines:
autoresponder unix - n n - - pipe autoresponder unix - n n - - pipe
flags=Fq user=autoresponder argv=/usr/local/sbin/autoresponder -s ${sender} -r ${recipient} -S ${sasl_username} -C ${client_address} flags=Fq user=autoresponder argv=/usr/local/sbin/autoresponder -s ${sender} -r ${recipient} -S ${sasl_username} -C ${client_address}
Set additional postfix parameter:
postconf -e 'autoresponder_destination_recipient_limit = 1'
service postfix restart
`) `)
os.Exit(0) os.Exit(0)
} }