From: Vsevolod Stakhov Date: Fri, 5 Nov 2021 14:24:00 +0000 (+0000) Subject: [Minor] Add boundary to the structured representation of the parts X-Git-Tag: 3.2~294 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=200a8fb20eb8df438e88abf5525412b12c06d31f;p=rspamd.git [Minor] Add boundary to the structured representation of the parts --- diff --git a/lualib/lua_mime.lua b/lualib/lua_mime.lua index a09ef84f8..cc9636a17 100644 --- a/lualib/lua_mime.lua +++ b/lualib/lua_mime.lua @@ -599,6 +599,7 @@ exports.message_to_ucl = function(task) p.filename = part:get_filename() p.content = part:get_content() p.headers = part:get_headers(true) or {} + p.boundary = part:get_boundary() table.insert(result.parts, p) end end