On Thu, Sep 03, 2020 at 02:32:36PM -0400, bobby wrote: > I am following this tutorial: > https://www.linuxbabe.com/redhat/spamassassin-centos-rhel-block-email-spam. > I followed the steps in "Move Spam into the Junk Folder". When I send an > email from a blacklisted e-mail address, I get a bounce e-mail from my > e-mail server. Here is what is in my spamass-milter file: > EXTRA_FLAGS="-m -r 8 -R NO_SPAM -i 127.0.0.1 -g sa-milt -- > --max-size=5120000" > I would prefer it to go into my Junk folder. How can I make this happen?
The "-r 8" sets a score limit over which a message will get rejected. If you don't want that, remove the -r option from your spamass-milter config. --Sean