diff options
author | Andrew Lewis <nerf@judo.za.org> | 2017-05-12 15:41:17 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2017-05-12 15:41:17 +0200 |
commit | ac258718c3e75087ff92341cc6b2d0c3f0dcca0f (patch) | |
tree | fddbb396260501297f20631648ebc4334f39bb2a /src/plugins/lua/dmarc.lua | |
parent | f6bcc7cd0937d1d4657f815d5d00f2aed7228dd9 (diff) | |
download | rspamd-ac258718c3e75087ff92341cc6b2d0c3f0dcca0f.tar.gz rspamd-ac258718c3e75087ff92341cc6b2d0c3f0dcca0f.zip |
[Minor] DMARC recporting: fix stray bracket
Diffstat (limited to 'src/plugins/lua/dmarc.lua')
-rw-r--r-- | src/plugins/lua/dmarc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/dmarc.lua b/src/plugins/lua/dmarc.lua index 8f148d1b1..375079837 100644 --- a/src/plugins/lua/dmarc.lua +++ b/src/plugins/lua/dmarc.lua @@ -784,7 +784,7 @@ if opts['reporting'] == true then end local function send_report_via_email(xmlf) local tmp_addr = reporting_addr - local encoded = rspamd_util.encode_base64(table.concat({xmlf('header'), xmlf('entries'), xmlf('footer')}, 78)) + local encoded = rspamd_util.encode_base64(table.concat({xmlf('header'), xmlf('entries'), xmlf('footer')}), 78) local function mail_cb(err, data, conn) local function no_error(merr, mdata, wantcode) wantcode = wantcode or '2' |