]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix setting of whitelisted rcpts and users
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 6 Apr 2018 08:36:20 +0000 (09:36 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 6 Apr 2018 08:36:20 +0000 (09:36 +0100)
src/plugins/lua/ratelimit.lua

index d705165174d026612f8d33b3d1d9e306a391add6..38405c4c2fc862a502506afb4493ef086ce49d6b 100644 (file)
@@ -29,8 +29,6 @@ local settings = {
   bounce_senders = { 'postmaster', 'mailer-daemon', '', 'null', 'fetchmail-daemon', 'mdaemon' },
 -- Do not check ratelimits for these recipients
   whitelisted_rcpts = { 'postmaster', 'mailer-daemon' },
-  whitelisted_ip = {},
-  whitelisted_user = {},
   prefix = 'RL',
   ham_factor_rate = 1.01,
   spam_factor_rate = 0.99,
@@ -514,7 +512,7 @@ if opts then
   else
     -- Stupid default...
     settings.whitelisted_rcpts = lua_maps.rspamd_map_add_from_ucl(
-        opts.whitelisted_rcpts, 'set', 'Ratelimit whitelisted rcpts')
+        settings.whitelisted_rcpts, 'set', 'Ratelimit whitelisted rcpts')
   end
 
   if opts['whitelisted_ip'] then