June 2016
Beginner
456 pages
9h 31m
English
In this recipe, we will learn how to install and set up a well-known e-mail filtering program, spam-assassin.
You will need access to a root account or an account with sudo privileges.
You need to have Postfix installed and working.
Follow these steps to filter mail with spam-assassin:
$ sudo apt-get update $ sudo apt-get install spamassassin spamc
$ sudo groupadd spamd $ sudo useradd -g spamd -s /usr/bin/nologin \ -d /var/log/spamassassin -m spamd
/etc/default/spamassassin and update the following lines:ENABLED=1 SAHOME="/var/log/spamassassin/" ...
Read now
Unlock full access