Allow larger messages to be checked by SpamAssassin (#1006)

Additionally, add the spam report headers to all emails, in order to make it easier to debug false negatives.
This commit is contained in:
Leo Koppelkamm 2016-11-30 18:55:03 +01:00 committed by Joshua Tauberer
parent 3af5e55035
commit b6f90e10c1
1 changed files with 3 additions and 2 deletions

View File

@ -48,7 +48,7 @@ echo "public.pyzor.org:24441" > /etc/spamassassin/pyzor/servers
# * Disable localmode so Pyzor, DKIM and DNS checks can be used. # * Disable localmode so Pyzor, DKIM and DNS checks can be used.
tools/editconf.py /etc/default/spampd \ tools/editconf.py /etc/default/spampd \
DESTPORT=10026 \ DESTPORT=10026 \
ADDOPTS="\"--maxsize=500\"" \ ADDOPTS="\"--maxsize=2000\"" \
LOCALONLY=0 LOCALONLY=0
# Spamassassin normally wraps spam as an attachment inside a fresh # Spamassassin normally wraps spam as an attachment inside a fresh
@ -63,7 +63,8 @@ tools/editconf.py /etc/default/spampd \
# Tell Spamassassin not to modify the original message except for adding # Tell Spamassassin not to modify the original message except for adding
# the X-Spam-Status mail header and related headers. # the X-Spam-Status mail header and related headers.
tools/editconf.py /etc/spamassassin/local.cf -s \ tools/editconf.py /etc/spamassassin/local.cf -s \
report_safe=0 report_safe=0 \
add_header="all Report _REPORT_"
# Bayesean learning # Bayesean learning
# ----------------- # -----------------