From 462fd37953cc83a133d9cbc872807adeea581375 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 9 Apr 2019 12:04:40 +0100 Subject: [PATCH] [Minor] Lua_maps: Allow to add glob maps --- lualib/lua_maps.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lualib/lua_maps.lua b/lualib/lua_maps.lua index 41ab2552c..c8cffa3c8 100644 --- a/lualib/lua_maps.lua +++ b/lualib/lua_maps.lua @@ -94,7 +94,7 @@ local function rspamd_map_add_from_ucl(opt, mtype, description) return ret end end - elseif mtype == 'regexp' then + elseif mtype == 'regexp' or mtype == 'glob' then -- Plain table local map = rspamd_config:add_map{ type = mtype, @@ -165,7 +165,7 @@ end -- Returns true if map was added or nil -- @param {string} mname config section to use -- @param {string} optname option name to use --- @param {string} mtype type of map ('set', 'hash', 'radix', 'regexp') +-- @param {string} mtype type of map ('set', 'hash', 'radix', 'regexp', 'glob') -- @param {string} description human-readable description of map -- @return {bool} true on success, or `nil` --]] -- 2.39.5