# User to run under (must be same as amavisd daemon) AMAVIS_USER=amavis # Set working directory (default /var/amavis). # Django : 2014-11-21 # default: WORKING_DIRECTORY=/var/spool/amavisd WORKING_DIRECTORY=/var/spool/amavisd/tmp # Communication socket between sendmail and amavisd-milter (default # /var/amavis/amavisd-milter.sock). The protocol spoken over this # socket is MILTER (Mail FILTER). It must agree with the # INPUT_MAIL_FILTER entry in sendmail.mc # The socket should be in "proto:address" format: # o {unix|local}:/path/to/file - A named pipe. # o inet:port@{hostname|ip-address} - An IPV4 socket. # o inet6:port@{hostname|ip-address} - An IPV6 socket. # Django : 2014-11-18 # default: SOCKET=/var/run/amavisd/amavisd-milter.sock SOCKET=inet:8899@10.0.0.67 # Communication socket between amavisd-milter and amavisd-new # (default /var/amavis/amavisd.sock). It must agree with the # $unix_socketname entry in amavisd.conf # The socket should be in "proto:address" format: # o {unix|local}:/path/to/file - A named pipe. # o inet:port@{hostname|ip-address} - An IPV4 socket. # o inet6:port@{hostname|ip-address} - An IPV6 socket. AMAVISD_SOCKET=/var/spool/amavisd/amavisd.sock # Use this pid file (default /var/amavis/amavisd-milter.pid). # Better to create /var/run/amavis and put it there #PID_FILE=/var/run/amavisd/amavisd-milter.pid # Maximum concurrent amavisd connections (default 0 - unlimited # number of connections). It must agree with the $max_servers # entry in amavisd.conf. MAX_CONNECTIONS=5 # Maximum wait for connection to amavisd in seconds (default 300 = # 5 minutes). It must be less then sending MTA timeout for a # response to the final "." that terminates a message on sending # MTA. sendmail has default value 1 hour, postfix 10 minutes and # qmail 20 minutes. We suggest to use less than 10 minutes. MAX_WAIT=300 # sendmail connection timeout in seconds (default 600 = 10 min- # utes). It must agree with the INPUT_MAIL_FILTER entry in send- # mail.mc and must be greater than or equal to the amavisd-new con- # nection timeout. When you use other milters (especially time- # consuming), the timeout must be sufficient to process message in # all milters. MAILDAEMON_TIMEOUT=600 # amavisd-new connection timeout in seconds (default 600 = 10 min- # utes). This timeout must be sufficient for message processing in # amavisd-new. It's usually a good idea to adjust them to the same # value as sendmail connection timeout. AMAVISD_TIMEOUT=600