diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-04-07 22:50:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 22:50:26 +0100 |
commit | d3e6715c6df48096d30114b026052f344230751d (patch) | |
tree | e532a8c0d91411730e37a002bbc106e3fa628c0a | |
parent | e31ed502be8b5109ad10f6e7bc078ecceb0c9a4d (diff) | |
parent | 4b29cc6755960df043e3196f8eed13e883012db0 (diff) | |
download | rspamd-d3e6715c6df48096d30114b026052f344230751d.tar.gz rspamd-d3e6715c6df48096d30114b026052f344230751d.zip |
Merge pull request #3326 from membero/patch-1
[Fix] rbl.lua: Helo Check always skipped
-rw-r--r-- | src/plugins/lua/rbl.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index 08d15c133..b1cebbf98 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -419,6 +419,8 @@ local function gen_rbl_callback(rule) add_dns_request(task, helo, true, false, requests_table, 'helo', whitelist) + + return true end local function check_dkim(task, requests_table, whitelist) |