I have a mail server on Ubuntu using Postfix and Dovecot and SpamAssassin. In Postfix I am using "plus addressing" via the recipient_delimiter
option. So, for example [email protected]
and [email protected]
are valid and actually deliver to the foo
account.
Some of those addresses have gotten scraped/sold and are now heavy sources of spam (such as [email protected]
). I'd like to block all email addressed to a specific list of addresses.
I edited /etc/spamassassin/local.cf
to:
- Uncomment this line:
shortcircuit USER_IN_BLACKLIST_TO on
- Add this line (above the shortcircuit):
blacklist_to [email protected]
After I restarted spamassassin (/etc/init.d/spamassassin restart
) emails sent to the blacklisted address still come through unharmed.
How can I hard-nuke these emails so I never see them?