]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Pet luacheck
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 2 Oct 2018 16:09:45 +0000 (17:09 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 2 Oct 2018 16:09:45 +0000 (17:09 +0100)
src/plugins/lua/spamtrap.lua

index f1582f8ce0a23ecc242d9e46e7587593d473d33e..85af46dd238cb62a052feb3e2c0473ee65f153d5 100644 (file)
@@ -137,12 +137,6 @@ local function spamtrap_cb(task)
 end
 
 -- Module setup
-local opts = rspamd_config:get_all_opt('spamtrap')
-if not (opts and type(opts) == 'table') then
-  rspamd_logger.infox(rspamd_config, 'module is unconfigured')
-  return
-end
-
 local function try_opts(where)
   local ret = false
   local opts = rspamd_config:get_all_opt(where)
@@ -160,6 +154,12 @@ local function try_opts(where)
   return ret
 end
 
+local opts = rspamd_config:get_all_opt('spamtrap')
+if not (opts and type(opts) == 'table') then
+  rspamd_logger.infox(rspamd_config, 'module is unconfigured')
+  return
+end
+
 if not try_opts(M) then try_opts('options') end
 
 if opts then