diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-04-17 10:19:05 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-04-17 10:19:05 +0100 |
commit | 497376cd6c624dbe169ddfe0a1666f6c86390493 (patch) | |
tree | f00b0298c9ec8f7b0bc8da5e3982ec3db7db19bd /lualib | |
parent | 3eda5a9aa5541daa3ae90e1f4055888bdf342500 (diff) | |
download | rspamd-497376cd6c624dbe169ddfe0a1666f6c86390493.tar.gz rspamd-497376cd6c624dbe169ddfe0a1666f6c86390493.zip |
[Minor] Fix syntax error
Diffstat (limited to 'lualib')
-rw-r--r-- | lualib/lua_auth_results.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lualib/lua_auth_results.lua b/lualib/lua_auth_results.lua index 1636472c6..7c7d3505d 100644 --- a/lualib/lua_auth_results.lua +++ b/lualib/lua_auth_results.lua @@ -180,7 +180,7 @@ local function gen_auth_results(task, settings) table.insert(hdr,'smtp.mailfrom=' .. smtp_from[1]['addr']) end - table.insert(hdr_parts, table.concat(hdr,' ') + table.insert(hdr_parts, table.concat(hdr,' ')) end if #hdr_parts > 0 then |