From: Vsevolod Stakhov Date: Sun, 28 Sep 2025 20:20:56 +0000 (+0100) Subject: [Minor] Fix compatibility X-Git-Tag: 3.13.1~2^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5642%2Fhead;p=thirdparty%2Frspamd.git [Minor] Fix compatibility --- diff --git a/lualib/rspamadm/secretbox.lua b/lualib/rspamadm/secretbox.lua index 3da9ea3b4c..651fc68591 100644 --- a/lualib/rspamadm/secretbox.lua +++ b/lualib/rspamadm/secretbox.lua @@ -210,7 +210,8 @@ local function decryption_handler(args) end if plaintext ~= nil then - write_output(args, tostring(plaintext)) + -- Plaintext must be printed as-is to preserve legacy semantics + print(tostring(plaintext)) else print('The decryption failed. Please check the correctness of the arguments given.') end