activate SA shortcircuit features via env, fixes #1118
This commit is contained in:
parent
a559631641
commit
b8726b80a4
16
README.md
16
README.md
|
@ -474,6 +474,22 @@ Note: this spamassassin setting needs `ENABLE_SPAMASSASSIN=1`. By default, the m
|
||||||
|
|
||||||
Note: this spamassassin setting needs `ENABLE_SPAMASSASSIN=1`
|
Note: this spamassassin setting needs `ENABLE_SPAMASSASSIN=1`
|
||||||
|
|
||||||
|
##### SA_SHORTCIRCUIT_BAYES_SPAM
|
||||||
|
|
||||||
|
- **1** => will activate spamassassin short circuiting for bayes spam detection.
|
||||||
|
|
||||||
|
This will uncommend the respective line in ```/etc/spamassasin/local.cf```
|
||||||
|
|
||||||
|
Note: activate this only if you are confident in your bayes database for identifying spam.
|
||||||
|
|
||||||
|
##### SA_SHORTCIRCUIT_BAYES_HAM
|
||||||
|
|
||||||
|
- **1** => will activate spamassassin short circuiting for bayes ham detection
|
||||||
|
|
||||||
|
This will uncommend the respective line in ```/etc/spamassasin/local.cf```
|
||||||
|
|
||||||
|
Note: activate this only if you are confident in your bayes database for identifying ham.
|
||||||
|
|
||||||
## Fetchmail
|
## Fetchmail
|
||||||
|
|
||||||
##### ENABLE_FETCHMAIL
|
##### ENABLE_FETCHMAIL
|
||||||
|
|
|
@ -625,8 +625,8 @@ function _setup_dovecot() {
|
||||||
sed -i "s/#sieve_after =/sieve_after =/" /etc/dovecot/conf.d/90-sieve.conf
|
sed -i "s/#sieve_after =/sieve_after =/" /etc/dovecot/conf.d/90-sieve.conf
|
||||||
cp /tmp/docker-mailserver/after.dovecot.sieve /usr/lib/dovecot/sieve-global/
|
cp /tmp/docker-mailserver/after.dovecot.sieve /usr/lib/dovecot/sieve-global/
|
||||||
sievec /usr/lib/dovecot/sieve-global/after.dovecot.sieve
|
sievec /usr/lib/dovecot/sieve-global/after.dovecot.sieve
|
||||||
else
|
else
|
||||||
sed -i "s/ sieve_after =/ #sieve_after =/" /etc/dovecot/conf.d/90-sieve.conf
|
sed -i "s/ sieve_after =/ #sieve_after =/" /etc/dovecot/conf.d/90-sieve.conf
|
||||||
fi
|
fi
|
||||||
chown docker:docker -R /usr/lib/dovecot/sieve*
|
chown docker:docker -R /usr/lib/dovecot/sieve*
|
||||||
chmod 550 -R /usr/lib/dovecot/sieve*
|
chmod 550 -R /usr/lib/dovecot/sieve*
|
||||||
|
@ -1390,6 +1390,16 @@ function _setup_security_stack() {
|
||||||
else
|
else
|
||||||
sed -i -r 's/^\$sa_spam_subject_tag (.*);/\$sa_spam_subject_tag = '"'$SA_SPAM_SUBJECT'"';/g' /etc/amavis/conf.d/20-debian_defaults
|
sed -i -r 's/^\$sa_spam_subject_tag (.*);/\$sa_spam_subject_tag = '"'$SA_SPAM_SUBJECT'"';/g' /etc/amavis/conf.d/20-debian_defaults
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# activate short circuits when SA BAYES is certain it has spam.
|
||||||
|
if [ "$SA_SHORTCIRCUIT_BAYES_SPAM" = 1 ]; then
|
||||||
|
sed -i -r 's/^# shortcircuit BAYES_99/shortcircuit BAYES_99/g' /etc/spamassassin/local.cf
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$SA_SHORTCIRCUIT_BAYES_HAM" = 1 ]; then
|
||||||
|
sed -i -r 's/^# shortcircuit BAYES_00/shortcircuit BAYES_00/g' /etc/spamassassin/local.cf
|
||||||
|
fi
|
||||||
|
|
||||||
test -e /tmp/docker-mailserver/spamassassin-rules.cf && cp /tmp/docker-mailserver/spamassassin-rules.cf /etc/spamassassin/
|
test -e /tmp/docker-mailserver/spamassassin-rules.cf && cp /tmp/docker-mailserver/spamassassin-rules.cf /etc/spamassassin/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue