diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-24 12:25:43 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-11-24 12:25:43 +0000 |
commit | f73302d55f422bd61a7746341207feb6c7017f01 (patch) | |
tree | 776552b95bf30798d7e1fa803ee9f55dcf29901f | |
parent | a1cc7d879c128fe0ff23614dc4e4bc774b69a754 (diff) | |
download | rspamd-f73302d55f422bd61a7746341207feb6c7017f01.tar.gz rspamd-f73302d55f422bd61a7746341207feb6c7017f01.zip |
[Fix] Revert change to ip_score
-rw-r--r-- | src/plugins/lua/ip_score.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/ip_score.lua b/src/plugins/lua/ip_score.lua index 50775a37d..e7cd9079f 100644 --- a/src/plugins/lua/ip_score.lua +++ b/src/plugins/lua/ip_score.lua @@ -327,7 +327,7 @@ end -- Configuration options local configure_ip_score_module = function() - local opts = rspamd_config:get_all_opt('ip_score') + local opts = rspamd_config:get_all_opt('options') if opts and type(opts) ~= 'table' then if type(opts['check_authed']) == 'boolean' then check_authed = opts['check_authed'] |