From: Vsevolod Stakhov Date: Tue, 9 Apr 2019 11:04:40 +0000 (+0100) Subject: [Minor] Lua_maps: Allow to add glob maps X-Git-Tag: 1.9.2~50 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=462fd37953cc83a133d9cbc872807adeea581375;p=rspamd.git [Minor] Lua_maps: Allow to add glob maps --- 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` --]]