You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by mm...@apache.org on 2011/06/13 17:24:23 UTC

svn commit: r1135143 - in /spamassassin/trunk/lib/Mail/SpamAssassin: PerMsgStatus.pm Plugin/AskDNS.pm Plugin/URIDNSBL.pm

Author: mmartinec
Date: Mon Jun 13 15:24:22 2011
New Revision: 1135143

URL: http://svn.apache.org/viewvc?rev=1135143&view=rev
Log:
typos in comments

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm
    spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/AskDNS.pm
    spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm?rev=1135143&r1=1135142&r2=1135143&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm Mon Jun 13 15:24:22 2011
@@ -1803,7 +1803,7 @@ sub get {
 # The goals are to find URIs in plain text spam that are intended to be clicked on or copy/pasted, but
 # ignore random strings that might look like URIs, for example in uuencoded files, and to ignore
 # URIs that spammers might seed in spam in ways not visible or clickable to add work to spam filters.
-# When we extract a domain and look it up in an RBL, an FP on decding that the text is a URI is not much
+# When we extract a domain and look it up in an RBL, an FP on deciding that the text is a URI is not much
 # of a problem, as the only cost is an extra RBL lookup. The same FP is worse if the URI is used in matching rule
 # because it could lead to a rule FP, as in bug 5780 with WIERD_PORT matching random uuencoded strings.
 # The principles of the following code are 1) if ThunderBird or Outlook Express would linkify a string,

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/AskDNS.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/AskDNS.pm?rev=1135143&r1=1135142&r2=1135143&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/AskDNS.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/AskDNS.pm Mon Jun 13 15:24:22 2011
@@ -28,8 +28,8 @@ AskDNS - form a DNS query using tag valu
 
 Using a DNS query template as specified in a parameter of a askdns rule,
 the plugin replaces tag names as found in the template with their values
-and launches DNS queries, as soon as tag values become available. When DNS
-responses trickle in, filters them according the requested DNS resource
+and launches DNS queries as soon as tag values become available. When DNS
+responses trickle in, filters them according to the requested DNS resource
 record type and optional subrule filtering expression, yielding a rule hit
 if a response meets filtering conditions.
 

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm?rev=1135143&r1=1135142&r2=1135143&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm Mon Jun 13 15:24:22 2011
@@ -446,7 +446,7 @@ sub parsed_metadata {
       if ($skip_domains->{$domain}) {
         dbg("uridnsbl: domain $domain in skip list");
       } else {
-        # use hostname as a key, and drag along the stipped domain name part
+        # use hostname as a key, and drag along the stripped domain name part
         $uri_ordered[$entry]->{$host} = $domain;
       }
     }