]> git.ipfire.org Git - ipfire.org.git/commitdiff
blocking: Replace spamhaus XBL against blocklist.de
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 8 May 2019 17:42:26 +0000 (18:42 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 8 May 2019 17:45:13 +0000 (18:45 +0100)
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 <michael.tremer@ipfire.org>
src/backend/geoip.py

index 564cf40348bf127f762284caf6c2b1f638b9e7da..536c0ed040a294da8b81c1731841714a638a234b 100644 (file)
@@ -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,
 }