From 980806016dec8f581f051fc7756a3d62d4f4b78b Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 8 May 2019 18:42:26 +0100 Subject: [PATCH] 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 --- src/backend/geoip.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, } -- 2.47.3