diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-03-08 16:16:17 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-03-08 16:16:17 +0000 |
commit | 43f5dbfa12860377da8e274b4517fc4d4321021c (patch) | |
tree | 9c161767dc555acd3ad1e6feafeec95e6fb3f1a5 /src | |
parent | c17368ed729788433d28b7116764e29dd84e2f86 (diff) | |
download | rspamd-43f5dbfa12860377da8e274b4517fc4d4321021c.tar.gz rspamd-43f5dbfa12860377da8e274b4517fc4d4321021c.zip |
[Minor] Unbreak rbls parsing
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/rbl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index 02c0ae786..83470f65f 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -533,7 +533,7 @@ local id = rspamd_config:register_symbol({ local is_monitored = {} for key,rbl in pairs(opts['rbls']) do (function() - if type(rbl) ~= 'string' or rbl['disabled'] then + if type(rbl) ~= 'table' or rbl['disabled'] then rspamd_logger.infox(rspamd_config, 'disable rbl "s"', key) return end |