We use Cyrus, Sendmail, SpamAssassin and Sieve.  

Sendmail uses an INPUT_MAIL_FILTER directive to send to the milter and thus
to SA.  

Once sendmail gets to calling Cyrus deliver, Sieve is used to move the
messages into a spam folder with a rule like the one below.

require "fileinto";
if header :contains "X-Spam-Level" "*****" {
     fileinto "INBOX.Spam";
}

This does require that each user have a sieve file in
/usr/seive/hash_level/user_id.  We have a web front-end that allows for the
adjusting of the X-Spam-Level and then writes the file.  We use PHP for this
with Sieve-php (which provides a class that does all the work).

We also use public folders to allow users to report false-negatives and
false-positives.  This is global so we don't use sa-learn.  Instead we have
some scripts that parse through the messages in the folders and generate
custom rules.

I'm not the admin for these boxes so I don't have a lot of details on the
configuration of sendmail.  I hope this is enough to get you started.

-- Scott

-----Original Message-----
From: David Smith [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 09, 2003 10:42 AM
To: Spamassassin List
Subject: [SAtalk] IMAP only?


I was using procmail to run spamassassin, but our mail server has been
changed to run the Cyrus IMAP server (with sieve) on a system where no
one has a login.

In such a case, any suggestions on the best way to run spamassassin? 
I've looked at imapassassin
(<http://sourceforge.net/projects/imapassassin/>) and spamcruncher
(<http://spamcruncher.sourceforge.net/>), but neither appear to work
over an SSL connection.

IMAP Spam Begone (<http://http://www.rogerbinns.com/isbg/>) is a python
script that supports SSL, but has some other problems (it doesn't appear
to remember which messages it's already seen).

In a perfect world, I'd also like to be able to run sa-learn on a remote
IMAP only folder...

Ideas?

Thanks for the help.

-- 
David Smith
[EMAIL PROTECTED]
Red Hat, Inc.
http://www.redhat.com
256.217.0141 (direct)
256.837.0057 (fax)





-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk


-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to