Jason Greb wrote: > I have Postfix with Courier, SpamAssassin and Amavisd installed. When > SpamAssassin rates an email with something like 12, how do I go ahead > and delete it right away so the user never gets it? > > I am also thinking of moving them to a folder, and having that folder > empty itself every so many days. Is this possible?
Take a look in sa_* parameters in /etc/amavisd.conf - This parameters are used by spamassassin while called by amavisd. You can tune the SPAM levels... For example : $sa_tag2_level_deflt = 6.0; $sa_kill_level_deflt = 12.0; At 6.0 the spam will be marked but remains delivered At 12.0 it will be discarded > > > Jason > > _______________________________________________ > tsl-discuss mailing list > [email protected] > http://lists.trustix.org/mailman/listinfo/tsl-discuss You can also check the default actions : $final_virus_destiny = D_DISCARD; $final_banned_destiny = D_DISCARD; $final_spam_destiny = D_REJECT; $final_bad_header_destiny = D_PASS; ___________________________________________________________________________ Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo! Messenger Téléchargez cette version sur http://fr.messenger.yahoo.com _______________________________________________ tsl-discuss mailing list [email protected] http://lists.trustix.org/mailman/listinfo/tsl-discuss
