commit 462fd37: [Minor] Lua_maps: Allow to add glob maps

Vsevolod Stakhov vsevolod at highsecure.ru
Tue Apr 9 11:07:04 UTC 2019


Author: Vsevolod Stakhov
Date: 2019-04-09 12:04:40 +0100
URL: https://github.com/rspamd/rspamd/commit/462fd37953cc83a133d9cbc872807adeea581375

[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`
 --]]


More information about the Commits mailing list