summaryrefslogtreecommitdiffstats
path: root/src/plugins/lua/dmarc.lua
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2017-05-14 20:40:44 +0200
committerAndrew Lewis <nerf@judo.za.org>2017-05-14 20:41:23 +0200
commit0e130050a652ee2eec2932ce10d8d0feb41ef0d2 (patch)
treebee7864977b85ae27c8d3ae457f4fa58db7037fc /src/plugins/lua/dmarc.lua
parent5ec59bb57731d403c96ba74d021309c24b798a50 (diff)
downloadrspamd-0e130050a652ee2eec2932ce10d8d0feb41ef0d2.tar.gz
rspamd-0e130050a652ee2eec2932ce10d8d0feb41ef0d2.zip
[Minor] DMARC reporting: remove stray character
Diffstat (limited to 'src/plugins/lua/dmarc.lua')
-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 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>')