File patch-URIDNSBL of Package spamassassin.19376
--- lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm.orig 2014-02-13 17:00:13.366843406 +0100
+++ lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm 2014-02-13 17:04:27.505682526 +0100
@@ -416,6 +416,8 @@ sub parsed_metadata {
while (my($uri, $info) = each %{$uris}) {
# we want to skip mailto: uris
next if ($uri =~ /^mailto:/i);
+ # we want to skip so-files, they are not url's
+ next if ($uri =~ /\.so$/);
# no hosts/domains were found via this uri, so skip
next unless ($info->{hosts});