diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-04-18 21:16:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-18 21:16:19 +0100 |
commit | 434112e3bb7bc880a1199a6263b9932021a54934 (patch) | |
tree | 871e02c7f82370b59e3d508be1e47e4d637d0344 | |
parent | 8fc1b70fde8215b6f399d344a5229d6e995d988c (diff) | |
parent | 040ca9b26243c847cd010fe347379d131c40b1d8 (diff) | |
download | rspamd-434112e3bb7bc880a1199a6263b9932021a54934.tar.gz rspamd-434112e3bb7bc880a1199a6263b9932021a54934.zip |
Merge pull request #4153 from twesterhever/temp-rbl-query-ebls-for-authenticated-senders-too
[Minor] Query EBLs for authenticated users as well
-rw-r--r-- | conf/modules.d/rbl.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/modules.d/rbl.conf b/conf/modules.d/rbl.conf index 721de47a6..94b3ee7c6 100644 --- a/conf/modules.d/rbl.conf +++ b/conf/modules.d/rbl.conf @@ -159,6 +159,7 @@ rbl { RSPAMD_EMAILBL { ignore_whitelist = true; ignore_defaults = true; + exclude_users = false; emails_delimiter = "."; hash_format = "base32"; hash_len = 32; @@ -172,6 +173,7 @@ rbl { MSBL_EBL { ignore_whitelist = true; ignore_defaults = true; + exclude_users = false; rbl = "ebl.msbl.org"; checks = ['emails', 'replyto']; emails_domainonly = false; |