From: Andrew Lewis Date: Thu, 7 Sep 2017 17:18:42 +0000 (+0200) Subject: [Fix] Auth-Results: Multiple DKIM signatures X-Git-Tag: 1.7.0~665 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83589dab631f96bbc0e15958dc000af3750b88de;p=thirdparty%2Frspamd.git [Fix] Auth-Results: Multiple DKIM signatures --- diff --git a/lualib/auth_results.lua b/lualib/auth_results.lua index e706291c4c..8f7e675532 100644 --- a/lualib/auth_results.lua +++ b/lualib/auth_results.lua @@ -133,13 +133,14 @@ local function gen_auth_results(task, settings) end table.insert(hdr_parts, hdr) elseif auth_type == 'dkim' and key ~= 'none' then + local dkim_parts = {} if common.symbols[auth_types['dkim'][key]][1] then local opts = common.symbols[auth_types['dkim'][key]][1]['options'] for _, v in ipairs(opts) do - hdr = hdr .. auth_type .. '=' .. key .. ' header.d=' .. v - table.insert(hdr_parts, hdr) + table.insert(dkim_parts, auth_type .. '=' .. key .. ' header.d=' .. v) end end + table.insert(hdr_parts, table.concat(dkim_parts, '; ')) elseif auth_type == 'arc' and key ~= 'none' then if common.symbols[auth_types['arc'][key]][1] then local opts = common.symbols[auth_types['arc'][key]][1]['options'] or {}