I noticed I was starting to get more and more spam. Here is what happened:
[1] I have a couple of email addresses I have manually whitelisted, eg:
all_spam_to [EMAIL PROTECTED]
[2] Now, when john.doe gets a spam, the final socre is something like: -90
[3] The auto-whitelist adjusts the score of the sender ([EMAIL PROTECTED]) with hefty -90.

So, how can I adjust SpamAssassin to not add 'all_spam_to' and 'whitlist_from' rank adjustments to the final auto_whitelist thing? A valid range for final auto-whitelist consideration would be nice... -20 to +20 for example.

(Note: This was all from using SpamAssassin 2.41, I just updated to 2.43 about 10 minutes ago).

Rudy

here is a little patch I made to the tools/check_whitelist script to allow
the path/directory of the auto-whitelist as the arguement.

# diff -u check_whitelist.orig check_whitelist
--- check_whitelist.orig Fri Nov 29 01:05:59 2002
+++ check_whitelist Fri Nov 29 00:52:32 2002
@@ -10,7 +10,7 @@
use AnyDBM_File ;
use vars qw( %h $k $v ) ;

-my $db = $ENV{HOME}."/.spamassassin/auto-whitelist"; # is this right?
+my $db = shift || $ENV{HOME}."/.spamassassin/auto-whitelist"; # is this right?

tie %h, "AnyDBM_File",$db, O_RDONLY,0600
or die "Cannot open file $db: $!\n";




-------------------------------------------------------
This SF.net email is sponsored by: Get the new Palm Tungsten T handheld. Power & Color in a compact size! http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to