diff options
author | Oliver Dick <31733320+membero@users.noreply.github.com> | 2020-04-07 23:05:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 23:05:29 +0200 |
commit | 4b29cc6755960df043e3196f8eed13e883012db0 (patch) | |
tree | e532a8c0d91411730e37a002bbc106e3fa628c0a | |
parent | e31ed502be8b5109ad10f6e7bc078ecceb0c9a4d (diff) | |
download | rspamd-4b29cc6755960df043e3196f8eed13e883012db0.tar.gz rspamd-4b29cc6755960df043e3196f8eed13e883012db0.zip |
Fix Helo Check
-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) |