From: Vsevolod Stakhov Date: Thu, 22 May 2025 09:11:52 +0000 (+0100) Subject: [Fix] Known senders: Use the same logic as in the replies module X-Git-Tag: 3.12.0~15^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=61532c843a24440e1b0e2a8463c9fd680385f83b;p=thirdparty%2Frspamd.git [Fix] Known senders: Use the same logic as in the replies module --- diff --git a/src/plugins/lua/known_senders.lua b/src/plugins/lua/known_senders.lua index 5cb2ddcf59..cefdcc44c9 100644 --- a/src/plugins/lua/known_senders.lua +++ b/src/plugins/lua/known_senders.lua @@ -259,7 +259,7 @@ local function verify_local_replies_set(task) return nil end - local replies_recipients = task:get_recipients('mime') or E + local replies_recipients = task:get_recipients('smtp') or E local replies_sender_string = lua_util.maybe_obfuscate_string(tostring(replies_sender), settings, settings.sender_prefix)