diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-09 09:34:29 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-09 09:34:29 +0100 |
commit | a55b88e68ee8c888e46a9640978f3e71f442ac86 (patch) | |
tree | abcff43d020c3bb423449e8640583decd6bb9272 /conf/modules.d | |
parent | 8b91573f87b477d68b2707bf655544b1cec9a8ad (diff) | |
download | rspamd-a55b88e68ee8c888e46a9640978f3e71f442ac86.tar.gz rspamd-a55b88e68ee8c888e46a9640978f3e71f442ac86.zip |
[Conf] Surbl: Utilise new `check_emails` option
Diffstat (limited to 'conf/modules.d')
-rw-r--r-- | conf/modules.d/surbl.conf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/conf/modules.d/surbl.conf b/conf/modules.d/surbl.conf index 032b2d799..15c04d40f 100644 --- a/conf/modules.d/surbl.conf +++ b/conf/modules.d/surbl.conf @@ -29,6 +29,7 @@ surbl { "SURBL_MULTI" { suffix = "multi.surbl.org"; check_dkim = true; + check_emails = true; bits { CRACKED_SURBL = 128; # From February 2016 ABUSE_SURBL = 64; @@ -40,6 +41,7 @@ surbl { "URIBL_MULTI" { suffix = "multi.uribl.com"; check_dkim = true; + check_emails = true; bits { URIBL_BLOCKED = 1; URIBL_BLACK = 2; @@ -50,6 +52,7 @@ surbl { "RSPAMD_URIBL" { suffix = "uribl.rspamd.com"; check_dkim = true; + check_emails = true; process_script =<<EOD function(url, suffix) local cr = require "rspamd_cryptobox_hash" @@ -61,6 +64,7 @@ EOD; "DBL" { suffix = "dbl.spamhaus.org"; no_ip = true; + check_emails = true; check_dkim = true; ips = { @@ -90,6 +94,7 @@ EOD; "SPAMHAUS_ZEN_URIBL" { suffix = "zen.spamhaus.org"; resolve_ip = true; + check_emails = true; ips { URIBL_SBL = "127.0.0.2"; URIBL_SBL_CSS = "127.0.0.3"; |