You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2007/01/09 21:45:50 UTC

svn commit: r494565 - /spamassassin/branches/3.1/lib/Mail/SpamAssassin/Plugin/AWL.pm

Author: felicity
Date: Tue Jan  9 12:45:49 2007
New Revision: 494565

URL: http://svn.apache.org/viewvc?view=rev&rev=494565
Log:
update the comment in AWL wrt what tests are ignored for the score

Modified:
    spamassassin/branches/3.1/lib/Mail/SpamAssassin/Plugin/AWL.pm

Modified: spamassassin/branches/3.1/lib/Mail/SpamAssassin/Plugin/AWL.pm
URL: http://svn.apache.org/viewvc/spamassassin/branches/3.1/lib/Mail/SpamAssassin/Plugin/AWL.pm?view=diff&rev=494565&r1=494564&r2=494565
==============================================================================
--- spamassassin/branches/3.1/lib/Mail/SpamAssassin/Plugin/AWL.pm (original)
+++ spamassassin/branches/3.1/lib/Mail/SpamAssassin/Plugin/AWL.pm Tue Jan  9 12:45:49 2007
@@ -338,7 +338,7 @@
 
     foreach my $test (@{$pms->{test_names_hit}}) {
       # ignore tests with 0 score in this scoreset,
-      # or if the test is a learning or userconf test
+      # or if the test is marked as "noautolearn"
       next if ($scores->{$test} == 0);
       next if (exists $tflags->{$test} && $tflags->{$test} =~ /\bnoautolearn\b/);