Re: Auto delete if = X on per user basis

2006-06-06 Thread Will Nordmeyer
Highly NOT recommended... but what I have users doing is this: Assuming you're using sendmail/procmail... set up a .procmailrc file that checks for: X-Spam-Level: (8 stars = spam score 8 or better). If it is that - dump it to /dev/null As in: --- SHELL=/bin/sh :0: * ^X-Spam-Level:

Re: Auto delete if = X on per user basis

2006-06-06 Thread Ken A
Gary V wrote: Craig Mead wrote: Hello all, Pretty much all I'm trying to do is setup on a per-user basis an auto delete mechanism for mail if it receives score XX. If you throw MailScanner into the mix with SpamAssassin, you can do per user prefs in combination with sendmail (not

Re: Auto delete if = X on per user basis

2006-06-06 Thread Mark Martinec
Ken, MailScanner works with Postfix and other MTAs as well, but it doesn't do the 'per-user SA configs' unless you are using it with Sendmail, because AFAIK, Postfix doesn't easily split multi-recipient emails, so incoming mail must be passed into the scanner with multiple recipients, meaning

Re: Auto delete if = X on per user basis

2006-06-06 Thread Theo Van Dinter
On Tue, Jun 06, 2006 at 06:53:53AM -0400, Will Nordmeyer wrote: As in: --- SHELL=/bin/sh :0: * ^X-Spam-Level: { :0 /dev/null } --- Just a fwiw: :0 * ^X-Spam-Level: \*\*\*\*\*\*\*\* /dev/null - there's no point in locking for writes to /dev/null (oh no, my

Re: Auto delete if = X on per user basis

2006-06-06 Thread Will Nordmeyer
Thanks... I actually have a few other things in my .procmailrc and base my decision on the X-SpamStatus-Yes, so this was the quick dirty. When I get spam, in addition to dead lettering it, I also forward it to [EMAIL PROTECTED] (nice automated process - bury the useless can SPAM mailbox with

Re: Auto delete if = X on per user basis

2006-06-06 Thread Ken A
Mark Martinec wrote: Ken, MailScanner works with Postfix and other MTAs as well, but it doesn't do the 'per-user SA configs' unless you are using it with Sendmail, because AFAIK, Postfix doesn't easily split multi-recipient emails, so incoming mail must be passed into the scanner with

Re: Auto delete if = X on per user basis

2006-06-06 Thread Mick Pollard
Theo Van Dinter wrote: Just a fwiw: :0 * ^X-Spam-Level: \*\*\*\*\*\*\*\* /dev/null A maildrop rule for those using maildrop. I have it so that all SPAM is sent to a .spam folder. I have this folder set to a max of 50 mail at any given time. It deletes the oldest mail to make room for new

Auto delete if = X on per user basis

2006-06-05 Thread Craig Mead
Hello all, I've had a good look around but am unable to find an answer to this exact scenario. I've had a bash @ using global settings on the user_pref's file, but didn't appear to work, so figured I'd ask. If you are aware of a reference to this that I've missed, I apologise. Pretty much

Re: Auto delete if = X on per user basis

2006-06-05 Thread Theo Van Dinter
On Tue, Jun 06, 2006 at 09:07:43AM +1000, Craig Mead wrote: Pretty much all I'm trying to do is setup on a per-user basis an auto delete mechanism for mail if it receives score XX. I've read all the You can't do this from SpamAssassin. You'd have to set something up (procmail?) to do this

Re: Auto delete if = X on per user basis

2006-06-05 Thread Ken A
If you throw MailScanner into the mix with SpamAssassin, you can do per user prefs in combination with sendmail (not postfix) and splitting messages with multiple recipients into single messages using sendmail's queue group functionality. Alternately, you could do it in a pop3 proxy. Ken A.