diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-04-11 19:30:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 19:30:49 +0100 |
commit | 1405bedd7cfae4d8b922049d650cbce5af63f059 (patch) | |
tree | 826367bb591b2d50be992be365a9d1111e8094cf /conf | |
parent | 7a3ff6e3c41c85455694aeec9c45d82fa044ce7f (diff) | |
parent | 50fe33f87e7b4c0fd0cc5c3565778b93696ab9c5 (diff) | |
download | rspamd-1405bedd7cfae4d8b922049d650cbce5af63f059.tar.gz rspamd-1405bedd7cfae4d8b922049d650cbce5af63f059.zip |
Merge pull request #4141 from twesterhever/temp-uribl-surbl-queries
[Feature] Query HELOs, PTRs, and Reply-To's against SURBL and URIBL as well
Diffstat (limited to 'conf')
-rw-r--r-- | conf/modules.d/rbl.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf index 5f053739e..721de47a6 100644 --- a/conf/modules.d/rbl.conf +++ b/conf/modules.d/rbl.conf @@ -191,7 +191,7 @@ rbl { "SURBL_MULTI" { ignore_defaults = true; rbl = "multi.surbl.org"; - checks = ['emails', 'dkim', 'urls']; + checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'urls']; emails_domainonly = true; exclude_users = false; @@ -207,7 +207,7 @@ rbl { "URIBL_MULTI" { ignore_defaults = true; rbl = "multi.uribl.com"; - checks = ['emails', 'dkim', 'urls']; + checks = ['emails', 'dkim', 'helo', 'rdns', 'replyto', 'urls']; emails_domainonly = true; exclude_users = false; |