> Hi > > I admin my personal mail system with SpamAssassin. I use > maildrop as my MDA to process mail through SpamAssassin > and then deliver it to the > proper new-spam folder based on the spam's score. >
You can also sent different spam (based on the score) to different folders. I have something like this in my maildroprc if ( /^X-Spam-Flag:.YES/ ) { if ( /^X-Spam-Level:.\*\*\*\*\*\*\*\*\*\*/ ) { to "Maildir/.Drafts" } to "Maildir/.Spam" } All score > 10 is put on Drafts folder of my spam account, and lover score spam in Spam folder. The Drafts folder is because they will automatically be sent to SpamCop reporting, while Spam folder needs my attention.