templates/default-spampd.erb (40 lines of code) (raw):

# Defaults file for spampd, the spam proxy daemon # (spampd is using spamassassin to scan mails) # On boolean options, 0 means off/no/false, 1 means on/yes/true # Wether or not to start spampd (0/1) STARTSPAMPD=1 # where to put the PID file PIDFILE=/var/run/spampd.pid # The IP to listen on LISTENHOST=127.0.0.1 # The port to listen on LISTENPORT=<%= @spampd_port %> # The host to forward the connection to DESTHOST=127.0.0.1 # The port to forward the connection to DESTPORT=<%= @spampd_relayport %> # How many parallel checks can be done in parallel CHILDREN=<%= @spampd_children %> # user ID to run as USERID=spampd # group ID to run as GRPID=spampd # Wether or not to tag all messages (0/1) TAGALL=1 # Wether or not to use auto-whitelisting (0/1) AUTOWHITELIST=0 # Wether or not to do only local checks # if this is turned on, no network based checks # (like DNS-Blacklists) are done. (0/1) LOCALONLY=1 # Wether to prefer INET (network,1) for syslog logging # instead of UNIX (unix domain socket,0) (0/1) LOGINET=0 # Any additional parameters you want to pass to spampd # # The following sample entry enables use of a config file # by spampd which can be used to override parameters from # the system-wide SpamAssassin configuration # #ADDOPTS="--config=/etc/spampd.conf" ADDOPTS="--maxsize=<%= @spampd_maxsize %>"