--On Thursday, December 12, 2002 3:07 PM -0500 Tom Allison <[EMAIL PROTECTED]> wrote:

| My question is if anyone knows anything about running
| spamassassin/spamc/spamd under sieve.

Sure, sort of. Though, I'm using amavisd-new[1] with postfix[2]. It's not that it runs "under sieve", you simply use sieve to take advantage of the fact that the spam has already been tagged. For example:

require ["fileinto"];
if header :contains "X-Spam-Level" "****************" {
discard;
stop;
}
if header :contains "X-Spam-Level" "*****" {
fileinto "JunkMail";
stop;
}


1. http://www.ijs.si/software/amavisd/
2. http://www.postfix.org/




-------------------------------------------------------
This sf.net email is sponsored by:
With Great Power, Comes Great Responsibility Learn to use your power at OSDN's High Performance Computing Channel
http://hpc.devchannel.org/
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to