From 022505f4805eda4f6224d25924c9c304432fcb9a Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Mon, 22 May 2017 14:06:43 +0200 Subject: [PATCH] [Minor] Auth results: Fix nil index --- lualib/auth_results.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.39.5