]> source.dussan.org Git - rspamd.git/commitdiff
add more Spamhaus RBL results to received IPs
authorPeter Müller <peter.mueller@link38.eu>
Thu, 17 May 2018 17:11:36 +0000 (19:11 +0200)
committerPeter Müller <peter.mueller@link38.eu>
Thu, 17 May 2018 17:11:36 +0000 (19:11 +0200)
conf/modules.d/rbl.conf
conf/scores.d/rbl_group.conf

index e92587f8dc48f317e17509517c1cb6041bdbeda4..8a5b2dab8cde302e7758e3a05efd97e4a1a7cb95 100644 (file)
@@ -43,8 +43,12 @@ rbl {
             from = false;
             ignore_whitelists = true;
             returncodes {
+                RECEIVED_SPAMHAUS_SBL = "127.0.0.2";
+                RECEIVED_SPAMHAUS_CSS = "127.0.0.3";
                 RECEIVED_SPAMHAUS_XBL = ["127.0.0.4", "127.0.0.5",
                     "127.0.0.6", "127.0.0.7"];
+                RECEIVED_SPAMHAUS_PBL = ["127.0.0.10", "127.0.0.11"];
+                RECEIVED_SPAMHAUS_DROP = "127.0.0.9";
             }
         }
 
index 8703afd3d31b1f0924049f6a9c02ff2d35fcae6c..8bee1b4b5682389f9a443631f38ee3b453c9cc7d 100644 (file)
@@ -69,11 +69,31 @@ symbols = {
         weight = 7.0;
         description = "From address is listed in zen drop bl";
     }
+    "RECEIVED_SPAMHAUS_SBL" {
+        weight = 1.0;
+        description = "Received address is listed in zen sbl";
+        one_shot = true;
+    }
+    "RECEIVED_SPAMHAUS_CSS" {
+        weight = 1.0;
+        description = "Received address is listed in zen css";
+        one_shot = true;
+    }
     "RECEIVED_SPAMHAUS_XBL" {
         weight = 3.0;
         description = "Received address is listed in zen xbl";
         one_shot = true;
     }
+    "RECEIVED_SPAMHAUS_PBL" {
+        weight = 0.0;
+        description = "Received address is listed in pbl (ISP list)";
+        one_shot = true;
+    }
+    "RECEIVED_SPAMHAUS_DROP" {
+        weight = 6.0;
+        description = "Received address is listed in zen drop bl";
+        one_shot = true;
+    }
 
     "RBL_SENDERSCORE" {
         weight = 2.0;
@@ -129,4 +149,4 @@ symbols = {
         weight = 1.0;
         description = "Address is listed in Spameatingmonkey RBL (ipv6)";
     }
-}
\ No newline at end of file
+}