diff options
author | Andrew Lewis <nerf@judo.za.org> | 2017-05-14 20:40:44 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2017-05-14 20:41:23 +0200 |
commit | 0e130050a652ee2eec2932ce10d8d0feb41ef0d2 (patch) | |
tree | bee7864977b85ae27c8d3ae457f4fa58db7037fc /src/plugins/lua | |
parent | 5ec59bb57731d403c96ba74d021309c24b798a50 (diff) | |
download | rspamd-0e130050a652ee2eec2932ce10d8d0feb41ef0d2.tar.gz rspamd-0e130050a652ee2eec2932ce10d8d0feb41ef0d2.zip |
[Minor] DMARC reporting: remove stray character
Diffstat (limited to 'src/plugins/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 e26614653..8d804f725 100644 --- a/src/plugins/lua/dmarc.lua +++ b/src/plugins/lua/dmarc.lua @@ -684,7 +684,7 @@ if opts['reporting'] == true then if (data.spf_result ~= '' and data.spf_domain ~= '') then table.insert(buf, table.concat({ '<spf><domain>', data.spf_domain, '</domain><result>', - data.spf_result, '</result>t</spf>', + data.spf_result, '</result></spf>', })) end table.insert(buf, '</auth_results>') |