diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-15 22:26:01 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-15 22:26:01 +0100 |
commit | 665971625a939d5f8e5f41e99636f4e74ebca5d3 (patch) | |
tree | cf21f4ea1cf493f53c91411fac23f5dd292a5278 /src/plugins/lua | |
parent | 27f1c33b9b4a4b04d031679b8815857f4709f0ee (diff) | |
download | rspamd-665971625a939d5f8e5f41e99636f4e74ebca5d3.tar.gz rspamd-665971625a939d5f8e5f41e99636f4e74ebca5d3.zip |
Minor fixes to settings.
Diffstat (limited to 'src/plugins/lua')
-rw-r--r-- | src/plugins/lua/settings.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/lua/settings.lua b/src/plugins/lua/settings.lua index 80792ce2b..8c464431d 100644 --- a/src/plugins/lua/settings.lua +++ b/src/plugins/lua/settings.lua @@ -29,7 +29,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- https://rspamd.com/doc/configuration/settings.html local set_section = rspamd_config:get_all_opt("settings") -if not set_section then return end + local settings = { [1] = {}, [2] = {}, @@ -461,6 +461,8 @@ local function process_settings_map(string) process_settings_table(obj) end end + + return res end if set_section[1] and type(set_section[1]) == "string" then |