From: Vsevolod Stakhov Date: Mon, 26 Oct 2015 14:16:53 +0000 (+0000) Subject: Fix load of settings with no setup. X-Git-Tag: 1.0.7~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1008f30aa87b791bbe8cefd02372dd7e767f13c4;p=thirdparty%2Frspamd.git Fix load of settings with no setup. --- diff --git a/src/plugins/lua/settings.lua b/src/plugins/lua/settings.lua index 0003d0b64b..e29b2d2726 100644 --- a/src/plugins/lua/settings.lua +++ b/src/plugins/lua/settings.lua @@ -473,12 +473,12 @@ local function process_settings_map(string) return res end -if set_section[1] and type(set_section[1]) == "string" then +if set_section and set_section[1] and type(set_section[1]) == "string" then -- Just a map of ucl if not rspamd_config:add_map(set_section[1], "settings map", process_settings_map) then rspamd_logger.errx(rspamd_config, 'cannot load settings from %1', set_section) end -elseif type(set_section) == "table" then +elseif set_section and type(set_section) == "table" then process_settings_table(set_section) end