diff options
author | Andrey Igoshin <ai@vsu.ru> | 2018-05-02 13:41:02 +0300 |
---|---|---|
committer | Andrey Igoshin <ai@vsu.ru> | 2018-05-02 13:41:02 +0300 |
commit | 9b6f22973406b80df6fa464db99cb473bd0f9b96 (patch) | |
tree | 0a09038c7436a1bde4a57290f6c5a3722d8d4e78 /lualib/lua_auth_results.lua | |
parent | 72b3e2943232914444888a6a024e9a66641ff15a (diff) | |
download | rspamd-9b6f22973406b80df6fa464db99cb473bd0f9b96.tar.gz rspamd-9b6f22973406b80df6fa464db99cb473bd0f9b96.zip |
[Fix] Fix AuthservId
Diffstat (limited to 'lualib/lua_auth_results.lua')
-rw-r--r-- | lualib/lua_auth_results.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lualib/lua_auth_results.lua b/lualib/lua_auth_results.lua index 7c7d3505d..3f604d760 100644 --- a/lualib/lua_auth_results.lua +++ b/lualib/lua_auth_results.lua @@ -78,8 +78,10 @@ local function gen_auth_results(task, settings) symbols = {} } - - if local_hostname then + local mta_hostname = task:get_request_header('MTA-Tag') + if mta_hostname then + table.insert(hdr_parts, tostring(mta_hostname)) + else table.insert(hdr_parts, local_hostname) end |