From: Andrew Lewis Date: Mon, 22 May 2017 12:06:43 +0000 (+0200) Subject: [Minor] Auth results: Fix nil index X-Git-Tag: 1.6.0~151 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=022505f4805eda4f6224d25924c9c304432fcb9a;p=rspamd.git [Minor] Auth results: Fix nil index --- diff --git a/lualib/auth_results.lua b/lualib/auth_results.lua index 621141b5d..f16a8f762 100644 --- a/lualib/auth_results.lua +++ b/lualib/auth_results.lua @@ -58,9 +58,9 @@ local function gen_auth_results(task, settings) end local auth_types = { - dkim = settings.routines['authentication-results'].dkim_symbols, - dmarc = settings.routines['authentication-results'].dmarc_symbols, - spf = settings.routines['authentication-results'].spf_symbols, + dkim = settings.dkim_symbols, + dmarc = settings.dmarc_symbols, + spf = settings.spf_symbols, } local common = { @@ -148,4 +148,4 @@ end exports.gen_auth_results = gen_auth_results -return exports \ No newline at end of file +return exports