From 08a9a1178ae2c9a7ac1ccc00870850655fd1ea52 Mon Sep 17 00:00:00 2001 From: heraklit256 <37872459+heraklit256@users.noreply.github.com#> Date: Sat, 8 Sep 2018 12:39:41 +0200 Subject: [PATCH] add blocklist.de RBL for from and received addresses --- conf/modules.d/rbl.conf | 15 +++++++++++++++ conf/scores.d/rbl_group.conf | 10 ++++++++++ 2 files changed, 25 insertions(+) diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf index bdd70a02f8..27db68f717 100644 --- a/conf/modules.d/rbl.conf +++ b/conf/modules.d/rbl.conf @@ -131,6 +131,21 @@ rbl { rbl = "ix.dnsbl.manitu.net"; ipv6 = true; } + + blocklistde { + symbol = "RBL_BLOCKLISTDE"; + rbl = "bl.blocklist.de"; + ipv6 = true; + } + + blocklistde_received { + symbol = "RECEIVED_BLOCKLISTDE"; + rbl = "bl.blocklist.de"; + ipv6 = true; + received = true; + from = false; + ignore_whitelists = true; + } } .include(try=true,priority=5) "${DBDIR}/dynamic/rbl.conf" diff --git a/conf/scores.d/rbl_group.conf b/conf/scores.d/rbl_group.conf index 96238adf9d..47165e0bd5 100644 --- a/conf/scores.d/rbl_group.conf +++ b/conf/scores.d/rbl_group.conf @@ -159,4 +159,14 @@ symbols = { weight = 4.0; description = "From address is listed in NiX Spam (http://www.dnsbl.manitu.net/)"; } + + "RBL_BLOCKLISTDE" { + weight = 4.0; + description = "From address is listed in Blocklist (https://www.blocklist.de/)"; + } + + "RECEIVED_BLOCKLISTDE" { + weight = 3.0; + description = "Received address is listed in Blocklist (https://www.blocklist.de/)"; + } } -- 2.47.3