What I want to do is the following:
quarantine spam over say 12 (or preferred configurable limit) and never deliver it to a user mailbox
tag spam over 7 and then let the individual make a decision on how to deal with it via appropriate filters in mailclient etc.
I can deal with the fact that a VERY small % will false-positive over 12, but 1 lost e-mail is better than dealing with the thousands of spam I catch.
Here is some info from a message posted a while back (Jan 6/03)
In qmail-scanner-queue.pl replace this:
} else { $tag_score .= "SA:1($sa_score/$sa_max):"; $sa_comment = "Yes, hits=$sa_score required=$sa_max" if ($spamc_options =~ /\-c/); &debug("SA: yup, this smells like SPAM"); }
$stop_spamassassin_time=[gettimeofday];
With this:
} else { $tag_score .= "SA:1($sa_score/$sa_max):"; $sa_comment = "Yes, hits=$sa_score required=$sa_max" if ($spamc_options =~ /\-c/); $quarantine_event="Questionable content"; $quarantine_description="Content blocked by SpamAssassin."; &debug("SA: yup, this smells like SPAM"); }
$stop_spamassassin_time=[gettimeofday];
It should be near the bottom of your qmail-scanner-queue.pl file.
Cheers, Daniel
McClain, Luke wrote:
I'm running qmail-scanner 1.15,Clamscan 0.54, and Spamassassin 2.43. Does anyone have a patch or know of a way to send Spam to the quarantine directory?
Regards, Luke
------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The best thread debugger on the planet. Designed with thread debugging features you've never dreamed of, try TotalView 6 free at www.etnus.com. _______________________________________________ Qmail-scanner-general mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/qmail-scanner-general
