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 2005/07/24 01:29:04 UTC

svn commit: r224584 - /spamassassin/branches/3.1/masses/hit-frequencies

Author: jm
Date: Sat Jul 23 16:29:01 2005
New Revision: 224584

URL: http://svn.apache.org/viewcvs?rev=224584&view=rev
Log:
allow SPF_PASS to appear in hit-frequencies output

Modified:
    spamassassin/branches/3.1/masses/hit-frequencies

Modified: spamassassin/branches/3.1/masses/hit-frequencies
URL: http://svn.apache.org/viewcvs/spamassassin/branches/3.1/masses/hit-frequencies?rev=224584&r1=224583&r2=224584&view=diff
==============================================================================
--- spamassassin/branches/3.1/masses/hit-frequencies (original)
+++ spamassassin/branches/3.1/masses/hit-frequencies Sat Jul 23 16:29:01 2005
@@ -306,8 +306,11 @@
   if (!$opt_a && !$opt_t && $rules{$test}->{tflags}) {
     # not net tests
     next if ($rules{$test}->{tflags} =~ /\bnet\b/ && ($opt_s % 2 == 0));
+
     # not userconf
-    next if ($rules{$test}->{tflags} =~ /\buserconf\b/);
+    # Jul 13 2005 jm: removed.  this blocks SPF_PASS from showing up!
+    # why should userconf rules not be visible in freqs output?
+    # next if ($rules{$test}->{tflags} =~ /\buserconf\b/);
   }
 
   # adjust based on corpora sizes (and cvt to % while we're at it)