aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorteplynin <35330419+teplynin@users.noreply.github.com>2024-12-15 12:52:36 +0300
committerGitHub <noreply@github.com>2024-12-15 12:52:36 +0300
commite40cbf34c84059df4290d3ab1d669cf81c194ea5 (patch)
treedb84cffcc60ea54a47b3e98ef4c8d193fbbc5ef6
parent77d6ef226a0388de7872b1aca4230418a2597837 (diff)
downloadrspamd-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.lua4
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