summaryrefslogtreecommitdiffstats
path: root/src/plugins/lua/forged_recipients.lua
diff options
context:
space:
mode:
authorAndrew Lewis <nerf@judo.za.org>2016-09-01 17:25:12 +0200
committerAndrew Lewis <nerf@judo.za.org>2016-09-01 17:25:12 +0200
commitf552edd887794a5086dcf93d36f8f82d83553196 (patch)
tree3e4073dbcd20744cb02caa51d8b12d6e451bcae0 /src/plugins/lua/forged_recipients.lua
parent99c2eb287a15649c0dac67065b0254c2a94a768f (diff)
downloadrspamd-f552edd887794a5086dcf93d36f8f82d83553196.tar.gz
rspamd-f552edd887794a5086dcf93d36f8f82d83553196.zip
[Feature] Add common way to disable Lua modules
Diffstat (limited to 'src/plugins/lua/forged_recipients.lua')
-rw-r--r--src/plugins/lua/forged_recipients.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/lua/forged_recipients.lua b/src/plugins/lua/forged_recipients.lua
index 957491a56..5b7d71fc4 100644
--- a/src/plugins/lua/forged_recipients.lua
+++ b/src/plugins/lua/forged_recipients.lua
@@ -72,6 +72,10 @@ end
-- Configuration
local opts = rspamd_config:get_all_opt('forged_recipients')
if opts then
+ if opts['enabled'] == false then
+ logger.info('Module is disabled')
+ return
+ end
if opts['symbol_rcpt'] or opts['symbol_sender'] then
local id = rspamd_config:register_symbol({
callback = check_forged_headers,