diff options
Diffstat (limited to 'src/plugins/lua/rspamd_update.lua')
-rw-r--r-- | src/plugins/lua/rspamd_update.lua | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/plugins/lua/rspamd_update.lua b/src/plugins/lua/rspamd_update.lua index 779cec2dd..19e481019 100644 --- a/src/plugins/lua/rspamd_update.lua +++ b/src/plugins/lua/rspamd_update.lua @@ -125,10 +125,6 @@ end -- Configuration part local section = rspamd_config:get_all_opt("rspamd_update") if section then - if section['enabled'] == false then - rspamd_logger.infox(rspamd_config, 'module is disabled') - return - end local trusted_key each(function(k, elt) if k == 'priority' then @@ -158,5 +154,5 @@ if section then end end, maps) else - rspamd_logger.infox('Module is unconfigured') + rspamd_logger.infox(rspamd_config, 'Module is unconfigured') end |