]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix bcc_addrs usage
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 20 Apr 2021 09:06:43 +0000 (10:06 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 20 Apr 2021 09:06:43 +0000 (10:06 +0100)
Issue: #3724

src/plugins/lua/dmarc.lua

index 3936f840d2dbdb5a469333963c488e47e12349ab..f216738f66f9546b6a06973caa380d032ee14a1c 100644 (file)
@@ -948,10 +948,10 @@ if opts['reporting'] == true then
                  xmlf('footer')})), 73)
         local addr_string = table.concat(list_rcpt, ', ')
 
-        bcc_addrs = lua_util.keys(bcc_addrs)
+        local bcc_addrs_keys = lua_util.keys(bcc_addrs)
         local bcc_string
-        if #bcc_addrs > 0 then
-          bcc_string = table.concat(bcc_addrs, ', ')
+        if #bcc_addrs_keys > 0 then
+          bcc_string = table.concat(bcc_addrs_keys, ', ')
         end
 
         local rhead = lua_util.jinja_template(report_template,