Am 28.01.2012 19:39, schrieb Dave Lewis - Mailinglist: > > > Hi all, > > > > I’m a fresh convert from 10 years of qmail and I’ve got postfix up and > running and tied into mysql with postfixadmin, but now I’m looking for > the extra bell’s and whistles for it before I turn it live. > > > > I’m looking for a guide to enable the usual Bayesian > filtering/Razor/Pyzor/RBL’s/AV/Spamassassin and instead of deleting spam > have it delivered to a SPAM folder in each users mailbox on my virtual > domains. This is one thing that I never managed to get working fully > on Qmail so hopefully postfix gives me some better luck. > > > > It seems that the biggest part is the per user SPAM folder. > > > > And While I’m at it what are people’s opinions on Amavisd?
you can use amavis its one of the best solutions there should be enough how too out there for this also for configure spamassassin ( look at their sites ) i use clamav-milter and spamass-milter works nice too, filtering spam messages in a user junk folder can be done i.e with a sieve script in lda/lmtp i.e http://wiki.dovecot.org/LDA/Sieve --snip SpamAssassin/Amavis tagged mail filtering Redirect !SpamAssassin/Amavis tagged mails into mail folder "INBOX.junk": require "fileinto"; if exists "X-Spam-Flag" { if header :contains "X-Spam-Flag" "NO" { } else { fileinto "INBOX.junk"; stop; } } --snipend i do it in a global sieve before rule for all users, and later a "virtual-plugin" setup for pop3 users making it possible to download this filtered mails too ( pop3 sees the junkfolder as mail in inbox ) the global rule cant be overided by a user so spam cant be forwarded etc but there are a lot of other solutions around with other software working fine too so you have to choose what might fit best to your needs there are many ways to goal > > > > Can anyone suggest any documentation that could help me ? > > > > Thanks, > > > > Dave > -- Best Regards MfG Robert Schetterer Germany/Munich/Bavaria
