You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by do...@apache.org on 2007/06/05 21:32:07 UTC

svn commit: r544604 - /spamassassin/branches/3.2/rules/50_scores.cf

Author: dos
Date: Tue Jun  5 12:32:06 2007
New Revision: 544604

URL: http://svn.apache.org/viewvc?view=rev&rev=544604
Log:
bug 5485: zero score DK/DKIM_POLICY_SIGNSOME rules since they'll always fire due to defaults (unless there's an explicit SIGNALL policy)

Modified:
    spamassassin/branches/3.2/rules/50_scores.cf

Modified: spamassassin/branches/3.2/rules/50_scores.cf
URL: http://svn.apache.org/viewvc/spamassassin/branches/3.2/rules/50_scores.cf?view=diff&rev=544604&r1=544603&r2=544604
==============================================================================
--- spamassassin/branches/3.2/rules/50_scores.cf (original)
+++ spamassassin/branches/3.2/rules/50_scores.cf Tue Jun  5 12:32:06 2007
@@ -921,7 +921,7 @@
 # DKIM
 ifplugin Mail::SpamAssassin::Plugin::DKIM
 score DKIM_POLICY_SIGNALL 0.001
-score DKIM_POLICY_SIGNSOME 0.001
+score DKIM_POLICY_SIGNSOME 0
 score DKIM_POLICY_TESTING 0.001
 score DKIM_SIGNED 0.001
 score DKIM_VERIFIED -0.001
@@ -930,7 +930,7 @@
 # DomainKeys
 ifplugin Mail::SpamAssassin::Plugin::DomainKeys
 score DK_POLICY_SIGNALL 0.001
-score DK_POLICY_SIGNSOME 0.001
+score DK_POLICY_SIGNSOME 0
 score DK_POLICY_TESTING 0.001
 score DK_SIGNED 0.001
 score DK_VERIFIED -0.001