commit 2b72876: [Minor] Fix line length in DMARC reports

Vsevolod Stakhov vsevolod at highsecure.ru
Mon Mar 25 21:56:03 UTC 2019


Author: Vsevolod Stakhov
Date: 2019-03-25 21:53:57 +0000
URL: https://github.com/rspamd/rspamd/commit/2b72876639e888b8dddbffbcb67c94fb5c0acb5c (HEAD -> master)

[Minor] Fix line length in DMARC reports
Issue: #2820
Closes: #2820

---
 src/plugins/lua/dmarc.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/lua/dmarc.lua b/src/plugins/lua/dmarc.lua
index eeaa53aee..a8de73567 100644
--- a/src/plugins/lua/dmarc.lua
+++ b/src/plugins/lua/dmarc.lua
@@ -901,7 +901,7 @@ if opts['reporting'] == true then
               table.concat(
                 {xmlf('header'),
                  xmlf('entries'),
-                 xmlf('footer')})), 78)
+                 xmlf('footer')})), 73)
         local function mail_cb(err, data, conn)
           local function no_error(merr, mdata, wantcode)
             wantcode = wantcode or '2'


More information about the Commits mailing list