diff options
author | twesterhever <40121680+twesterhever@users.noreply.github.com> | 2024-03-24 16:29:47 +0000 |
---|---|---|
committer | twesterhever <40121680+twesterhever@users.noreply.github.com> | 2024-04-28 08:28:38 +0000 |
commit | c78c70c76bb7ae8e714ed773037ccce1012dd20f (patch) | |
tree | 4dc83010335daa42af03d24706b42ef851182d68 /conf | |
parent | 5e84a82f8742ed2bcef65859759c0dd14aa9c4ca (diff) | |
download | rspamd-c78c70c76bb7ae8e714ed773037ccce1012dd20f.tar.gz rspamd-c78c70c76bb7ae8e714ed773037ccce1012dd20f.zip |
[Enhancement] Check Message-ID RHS against popular DNSBLs by default
Diffstat (limited to 'conf')
-rw-r--r-- | conf/modules.d/rbl.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf index ef87c4c5a..3d980acbe 100644 --- a/conf/modules.d/rbl.conf +++ b/conf/modules.d/rbl.conf @@ -205,7 +205,7 @@ rbl { "SURBL_MULTI" { ignore_defaults = true; rbl = "multi.surbl.org"; - checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'urls']; + checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'mid', 'urls']; emails_domainonly = true; exclude_users = false; @@ -241,7 +241,7 @@ rbl { "URIBL_MULTI" { ignore_defaults = true; rbl = "multi.uribl.com"; - checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'urls']; + checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'mid', 'urls']; emails_domainonly = true; exclude_users = false; @@ -274,7 +274,7 @@ rbl { ignore_defaults = true; rbl = "dbl.spamhaus.org"; no_ip = true; - checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'urls']; + checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'mid', 'urls']; emails_domainonly = true; exclude_users = false; |