diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-04-17 11:53:46 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-04-17 11:53:46 +0100 |
commit | 848ad884606738f882190a6311bd32d579737a94 (patch) | |
tree | 22121dc92f8eadbb692925879f34991bc96c873a /src | |
parent | 4f2b2d824f7c8d3d0d02dc995c81213d7a5c8026 (diff) | |
download | rspamd-848ad884606738f882190a6311bd32d579737a94.tar.gz rspamd-848ad884606738f882190a6311bd32d579737a94.zip |
[Minor] Rbl: Fix log message
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/rbl.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index 09ac69c94..1e339b1f5 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -299,8 +299,8 @@ local function gen_rbl_callback(rule) local wl = whitelist[req_str] if wl then lua_util.debugm(N, task, - 'whitelisted %s on %s by %s (%s) rbl rule (%s checked)', - req_str, wl.type, wl.symbol, what) + 'whitelisted request to %s by %s (%s) rbl rule (%s checked type, %s whitelist type)', + req_str, wl.type, wl.symbol, what, wl.type) if wl.type == what then -- Add symbol option (0.0 / 0.0 is used to denounce NAN that prevents score modification) task:adjust_result(wl.symbol, 0.0 / 0.0, rule.symbol) |