diff options
author | teplynin <35330419+teplynin@users.noreply.github.com> | 2024-12-15 12:52:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-15 12:52:36 +0300 |
commit | e40cbf34c84059df4290d3ab1d669cf81c194ea5 (patch) | |
tree | db84cffcc60ea54a47b3e98ef4c8d193fbbc5ef6 | |
parent | 77d6ef226a0388de7872b1aca4230418a2597837 (diff) | |
download | rspamd-e40cbf34c84059df4290d3ab1d669cf81c194ea5.tar.gz rspamd-e40cbf34c84059df4290d3ab1d669cf81c194ea5.zip |
Update src/plugins/lua/rbl.lua
Co-authored-by: Vsevolod Stakhov <vsevolod@rspamd.com>
-rw-r--r-- | src/plugins/lua/rbl.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index a5c8346c8..76c84f85d 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -698,7 +698,9 @@ local function gen_rbl_callback(rule) requests_table, 'received', whitelist) else - lua_util.debugm(N, task, 'rbl %s; skip check_received for %s: Received IP same as From IP and will be checked only in check_from function', rule.symbol, rh.real_ip) + lua_util.debugm(N, task, 'rbl %s; skip check_received for %s:' .. + 'Received IP same as From IP and will be checked only in check_from function', + rule.symbol, rh.real_ip) end end end |