]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Lua_maps: Allow to add glob maps
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 9 Apr 2019 11:04:40 +0000 (12:04 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 9 Apr 2019 11:04:40 +0000 (12:04 +0100)
lualib/lua_maps.lua

index 41ab2552c698aa83178ed5aa5cfd64bfaa9bc580..c8cffa3c8589af6c74b0ecb8bad8134ac0e16581 100644 (file)
@@ -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`
 --]]