From fae7df6942e3be56a465d642b8e08d5f22eaab8e Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Tue, 30 Jun 2015 14:34:27 +0200 Subject: [PATCH] Fix use of RBL name as symbol; ignore RBL names that would not be yielded --- src/plugins/lua/rbl.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index c2ec6ae3d..32e3af27a 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -381,8 +381,10 @@ for key,rbl in pairs(opts['rbls']) do end end end - if not rbl['symbol'] and type(rbl['returncodes']) ~= 'nil' and not rbl['unknown'] then - rbl['symbol'] = key + if not rbl['symbol'] and + ((rbl['returncodes'] and rbl['unknown']) or + (not rbl['returncodes'])) then + rbl['symbol'] = key end if type(rspamd_config.get_api_version) ~= 'nil' and rbl['symbol'] then rspamd_config:register_virtual_symbol(rbl['symbol'], 1, id) -- 2.39.5