Changes of Revision 6
[-] [+] | Added | patch-URIDNSBL |
@@ -0,0 +1,11 @@ +--- lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm 2006-09-29 15:06:39.000000000 +0200 ++++ lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm 2007-01-08 11:53:57.000000000 +0100 +@@ -207,6 +207,8 @@ + while (my($uri, $info) = each %{$uris}) { + # we want to skip mailto: uris + next if ($uri =~ /^mailto:/); ++ # we want to skip so-files, they are not url's ++ next if ($uri =~ /\.so$/); + + # no domains were found via this uri, so skip + next unless ($info->{domains}); |