diff options
author | Jan Smutny <js@excello.cz> | 2023-03-31 16:21:20 +0200 |
---|---|---|
committer | Jan Smutny <js@excello.cz> | 2023-03-31 16:21:20 +0200 |
commit | 1d7cc87fe2eb9bcb833faef7dc814fcf3315eec3 (patch) | |
tree | da25a3c25d47133d51f248e45afb29b4032f70e2 /src | |
parent | 6b1386d10566307ea1fe87c0ec73def57fcc8d1d (diff) | |
download | rspamd-1d7cc87fe2eb9bcb833faef7dc814fcf3315eec3.tar.gz rspamd-1d7cc87fe2eb9bcb833faef7dc814fcf3315eec3.zip |
fixup! arc.lua: fix signature of ARC-Seal header
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/arc.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/lua/arc.lua b/src/plugins/lua/arc.lua index 4fdd4fe9f..697c38b48 100644 --- a/src/plugins/lua/arc.lua +++ b/src/plugins/lua/arc.lua @@ -530,6 +530,8 @@ local function arc_sign_seal(task, params, header) local cur_idx = 1 if arc_seals then cur_idx = #arc_seals + 1 + -- We use the cached version per each ARC-* header field individually, already sorted by instance + -- value in ascending order for i = 1, #arc_seals, 1 do if arc_auth_results[i] then local s = dkim_canonicalize('ARC-Authentication-Results', |