Scan incoming and outgoing email for spam. Use a local Unbound for DNS, so we don't run into blocks for RBL queries.
29 lines
925 B
Plaintext
29 lines
925 B
Plaintext
# spamass-milt startup defaults
|
|
|
|
# OPTIONS are passed directly to spamass-milter.
|
|
# man spamass-milter for details
|
|
|
|
# Non-standard configuration notes:
|
|
# See README.Debian if you use the -x option with sendmail
|
|
# You should not pass the -d option in OPTIONS; use SOCKET for that.
|
|
|
|
# Default, use the spamass-milter user as the default user, ignore
|
|
# messages from localhost
|
|
OPTIONS="-u spamass-milter -i 127.0.0.1"
|
|
|
|
# Reject emails with spamassassin scores > 15.
|
|
#OPTIONS="${OPTIONS} -r 15"
|
|
|
|
# Do not modify Subject:, Content-Type: or body.
|
|
#OPTIONS="${OPTIONS} -m"
|
|
|
|
######################################
|
|
# If /usr/sbin/postfix is executable, the following are set by
|
|
# default. You can override them by uncommenting and changing them
|
|
# here.
|
|
######################################
|
|
# SOCKET="/var/spool/postfix/spamass/spamass.sock"
|
|
# SOCKETOWNER="postfix:postfix"
|
|
# SOCKETMODE="0660"
|
|
######################################
|