From: Jose Celestino Date: Fri, 22 Aug 2025 13:01:48 +0000 (+0100) Subject: [Minor] Include the pipeline condition description on the pipeline returned false... X-Git-Tag: 3.13.1~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bf737a91cbd69f598aabd67ac12b7beb0eb5d6b;p=thirdparty%2Frspamd.git [Minor] Include the pipeline condition description on the pipeline returned false message on rbl.lua --- diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index 56a4a55004..29cba269d3 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -936,8 +936,8 @@ local function gen_rbl_callback(rule) for i, f in ipairs(pipeline) do if not f(task, dns_req, whitelist) then lua_util.debugm(N, task, - "skip rbl check: %s; pipeline condition %s returned false", - rule.symbol, i) + "skip rbl check: %s; pipeline condition %s (%s) returned false", + rule.symbol, i, description[i]) return end end