You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2008/10/20 18:10:55 UTC

svn commit: r706326 - /spamassassin/trunk/masses/rule-dev/strip-high-scorers-from-log

Author: jm
Date: Mon Oct 20 09:10:54 2008
New Revision: 706326

URL: http://svn.apache.org/viewvc?rev=706326&view=rev
Log:
up the threshold for the seek rules to 12 pts, 10 was missing a little stuff on untuned setups

Modified:
    spamassassin/trunk/masses/rule-dev/strip-high-scorers-from-log

Modified: spamassassin/trunk/masses/rule-dev/strip-high-scorers-from-log
URL: http://svn.apache.org/viewvc/spamassassin/trunk/masses/rule-dev/strip-high-scorers-from-log?rev=706326&r1=706325&r2=706326&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-dev/strip-high-scorers-from-log (original)
+++ spamassassin/trunk/masses/rule-dev/strip-high-scorers-from-log Mon Oct 20 09:10:54 2008
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-my $score_cutoff = 10;
+my $score_cutoff = 12;
 my $lasttext = '';
 
 while (<>) {