From: Michael Tremer Date: Wed, 8 May 2019 17:42:26 +0000 (+0100) Subject: blocking: Replace spamhaus XBL against blocklist.de X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=980806016dec8f581f051fc7756a3d62d4f4b78b;p=ipfire.org.git blocking: Replace spamhaus XBL against blocklist.de Spamhaus XBL seems to have quite a high number of false positives. Therefore we are trying to use a different blacklist now. Signed-off-by: Michael Tremer --- diff --git a/src/backend/geoip.py b/src/backend/geoip.py index 564cf403..536c0ed0 100644 --- a/src/backend/geoip.py +++ b/src/backend/geoip.py @@ -15,6 +15,7 @@ from .misc import Object BLACKLISTS = { "access.redhawk.org" : False, + "all.de.bl.blocklist.de" : True, "all.spamblock.unit.liu.se" : False, "b.barracudacentral.org" : False, "bl.deadbeef.com" : False, @@ -108,7 +109,7 @@ BLACKLISTS = { "virus.rbl.msrbl.net" : False, "web.dnsbl.sorbs.net" : False, "wormrbl.imp.ch" : False, - "xbl.spamhaus.org" : True, + "xbl.spamhaus.org" : False, "zen.spamhaus.org" : False, "zombie.dnsbl.sorbs.net" : False, }