]> source.dussan.org Git - rspamd.git/commitdiff
add blocklist.de RBL for from and received addresses 2471/head
authorheraklit256 <37872459+heraklit256@users.noreply.github.com#>
Sat, 8 Sep 2018 10:39:41 +0000 (12:39 +0200)
committerheraklit256 <37872459+heraklit256@users.noreply.github.com#>
Sat, 8 Sep 2018 10:39:41 +0000 (12:39 +0200)
conf/modules.d/rbl.conf
conf/scores.d/rbl_group.conf

index bdd70a02f807dc6d74a0c2a797f213655161ac5c..27db68f71712c3316408ad917240f4f7a5c812c4 100644 (file)
@@ -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"
index 96238adf9d68a37e5d49958f7ce7c9414180fe32..47165e0bd5afd4af7b0cce712ba41c848e85ce36 100644 (file)
@@ -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/)";
+    }
 }