You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by qu...@apache.org on 2004/05/23 08:35:55 UTC

svn commit: rev 20236 - incubator/spamassassin/trunk/lib/Mail/SpamAssassin

Author: quinlan
Date: Sat May 22 23:35:54 2004
New Revision: 20236

Modified:
   incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm
Log:
this needs to be case-insensitive


Modified: incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm
==============================================================================
--- incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm	(original)
+++ incubator/spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm	Sat May 22 23:35:54 2004
@@ -843,7 +843,7 @@
     # and add back to the array.  the foreach loop will go over those
     # and deal appropriately.
     # bug 3308: redirectors like yahoo only need one '/' ... <grrr>
-    if ($nuri =~ m{^https?://.+?(https?:/{0,2}.+)$}) {
+    if ($nuri =~ m{^https?://.+?(https?:/{0,2}.+)$}i) {
       push(@uris, $1);
     }
   }