Role to install & maintain spamassassin (including DKIM, pyzor and razor checks)
Defaults:
## general
spamassassin_user: spamd
spamassassin_home_dir: /var/log/spamassassin/
# Write spamassassin config files (only install spamassassin and configure
# cronjob if set to False)
spamassassin_configure: True
## file: /etc/default/spamassassin
spamassassin_enabled: true
spamassassin_automatic_rule_update_enabled: true
spamassassin_nice_level: 0
## file: /etc/spamassassin/local.cf
# Rewrite the mail header?
spamassassin_rewrite_header_enabled: true
spamassassin_rewrite_header: "Subject *****SPAM*****"
# Allowed 0, 1, 2 - see https://spamassassin.apache.org/full/3.0.x/dist/doc/Mail_SpamAssassin_Conf.html
spamassassin_report_safe: 0
# Set the score required before a mail is considered spam
spamassassin_required_score: 5.0
# Whether to use the naive-Bayesian-style classifier built into SpamAssassin.
spamassassin_use_bayes: 1
# Whether to use rules using the naive-Bayesian-style classifier built into SpamAssassin.
spamassassin_bayes_auto_learn: 1
# What networks or hosts are 'trusted' in your setup.
spamassassin_trusted_networks: []
# Allowed: nfsafe, flock, win32
spamassassin_lock_method: flock
# If you receive mail filtered by upstream mail systems, like a spam-filtering ISP or mailing list,
# and that service adds new headers (as most of them do), these headers may provide inappropriate cues
# to the Bayesian classifier, allowing it to take a ``short cut''. To avoid this, list the headers using this setting.
spamassassin_bayes_ignore_header:
- X-Bogosity
- X-Spam-Flag
- X-Spam-Status
## file: /etc/spamassassin/whitelist.cf
# manual whitelisting
spamassassin_whitelist: []
# Add addtional update channels, which should be updates by the daily
# sa-update cronjob. E.g.:
# spamassassin_additional_update_channels:
# - address: spamassassin.heinlein-support.de
# gpg: no
spamassassin_additional_update_channels: []
# Enable additional pyzor check
spamassassin_pyzor_enabled: False
spamassassin_pyzor_config_dir: /etc/mail/spamassassin/.pyzor/
# Enable additional razor chek
spamassassin_razor_enabled: True
spamassassin_razor_config_dir: /etc/mail/spamassassin/.razor/
# Enable monit monitoring
spamassassin_monit_enabled: False
# Enable spam training by users and domain
# spamassassin_spamtraining_users:
# - domain: myfirstdomain.org
# users:
# - admin
# - foo
# - domain: myseconddomain.org
# users:
# - admina
# - foobar
spamassassin_spamtraining_users: []
spamassassin_custom_scores: []
spamassassin_packages: - spamassassin - spamc - libmail-dkim-perl
Download latest release with ansible-galaxy
ansible-galaxy install systemli.spamassassin
- hosts: servers
roles:
- { role: systemli.spamassassin }
GPL