You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by gb...@apache.org on 2020/01/17 10:31:08 UTC

svn commit: r1872912 - in /spamassassin: branches/3.4/UPGRADE branches/3.4/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm trunk/UPGRADE trunk/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm

Author: gbechis
Date: Fri Jan 17 10:31:08 2020
New Revision: 1872912

URL: http://svn.apache.org/viewvc?rev=1872912&view=rev
Log:
Increase fns_extrachars default value to 50

Modified:
    spamassassin/branches/3.4/UPGRADE
    spamassassin/branches/3.4/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm
    spamassassin/trunk/UPGRADE
    spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm

Modified: spamassassin/branches/3.4/UPGRADE
URL: http://svn.apache.org/viewvc/spamassassin/branches/3.4/UPGRADE?rev=1872912&r1=1872911&r2=1872912&view=diff
==============================================================================
--- spamassassin/branches/3.4/UPGRADE (original)
+++ spamassassin/branches/3.4/UPGRADE Fri Jan 17 10:31:08 2020
@@ -2,6 +2,8 @@
 Note for Users Upgrading to SpamAssassin 3.4.4
 ----------------------------------------------
 
+- FromNameSpoof: fns_extrachars parameter default value has been increased to 50
+
 - nosubject and maxhits tflags now work correctly with sa-compile
 
 Note for Users Upgrading to SpamAssassin 3.4.3

Modified: spamassassin/branches/3.4/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm
URL: http://svn.apache.org/viewvc/spamassassin/branches/3.4/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm?rev=1872912&r1=1872911&r2=1872912&view=diff
==============================================================================
--- spamassassin/branches/3.4/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm (original)
+++ spamassassin/branches/3.4/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm Fri Jan 17 10:31:08 2020
@@ -55,7 +55,7 @@ The plugin allows you to skip emails tha
 FromNameSpoof allows for a configurable closeness when matching the From:addr and From:name,
 the closeness can be adjusted with:
 
- fns_extrachars 5
+ fns_extrachars 50
 
 B<Note> that FromNameSpoof detects the "owner" of a domain by the following search:
 
@@ -193,7 +193,7 @@ sub set_config {
 
   push(@cmds, {
     setting => 'fns_extrachars',
-    default => 5,
+    default => 50,
     type => $Mail::SpamAssassin::Conf::CONF_TYPE_NUMERIC,
   });
 

Modified: spamassassin/trunk/UPGRADE
URL: http://svn.apache.org/viewvc/spamassassin/trunk/UPGRADE?rev=1872912&r1=1872911&r2=1872912&view=diff
==============================================================================
--- spamassassin/trunk/UPGRADE (original)
+++ spamassassin/trunk/UPGRADE Fri Jan 17 10:31:08 2020
@@ -2,6 +2,8 @@
 Note for Users Upgrading to SpamAssassin 4.0.0
 ----------------------------------------------
 
+- FromNameSpoof: fns_extrachars parameter default value has been increased to 50
+
 - All log output (stderr, file, syslog) is now escaped properly,
   \r \n \t \\, and control chars, DEL, UTF-8 sequences as \x{XX}.
   Whitespace is not normalized anymore like in versions <4.0.

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm?rev=1872912&r1=1872911&r2=1872912&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/FromNameSpoof.pm Fri Jan 17 10:31:08 2020
@@ -55,7 +55,7 @@ The plugin allows you to skip emails tha
 FromNameSpoof allows for a configurable closeness when matching the From:addr and From:name,
 the closeness can be adjusted with:
 
- fns_extrachars 5
+ fns_extrachars 50
 
 B<Note> that FromNameSpoof detects the "owner" of a domain by the following search:
 
@@ -194,7 +194,7 @@ sub set_config {
 
   push(@cmds, {
     setting => 'fns_extrachars',
-    default => 5,
+    default => 50,
     type => $Mail::SpamAssassin::Conf::CONF_TYPE_NUMERIC,
   });