aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2019-10-26 11:57:39 +0100
committerGitHub <noreply@github.com>2019-10-26 11:57:39 +0100
commit2e02f4127e0a57bceac7315156153b3f0a1281f7 (patch)
tree7d5824d684ba6ab4840fd9e22a5a2eaa00efe9ea /src
parent91c5c10d2c1c46d2ef1fa42f88f7aaeb3c690abb (diff)
parent25ef2636ef82e7ec33b0f8a6558c1de2fe59c21b (diff)
downloadrspamd-2e02f4127e0a57bceac7315156153b3f0a1281f7.tar.gz
rspamd-2e02f4127e0a57bceac7315156153b3f0a1281f7.zip
Merge pull request #3122 from philr/fix_dmarc_reporting_addr_logging
[Fix] Fix not logging DMARC reporting addresses
Diffstat (limited to 'src')
-rw-r--r--src/plugins/lua/dmarc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/dmarc.lua b/src/plugins/lua/dmarc.lua
index eab87c85a..c2fc4d9bb 100644
--- a/src/plugins/lua/dmarc.lua
+++ b/src/plugins/lua/dmarc.lua
@@ -975,7 +975,7 @@ if opts['reporting'] == true then
reporting_addr[report_settings.additional_address] = true
end
rspamd_logger.infox(ev_base, 'sending report for %s <%s>',
- reporting_domain, table.concat(reporting_addr, ','))
+ reporting_domain, reporting_addr)
local dmarc_xml = dmarc_report_xml()
local dmarc_push_cb
dmarc_push_cb = function(err, data)