]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Remove deprecated API calls
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 23 Mar 2017 17:52:24 +0000 (17:52 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 23 Mar 2017 17:52:24 +0000 (17:52 +0000)
src/plugins/lua/once_received.lua
src/plugins/lua/rbl.lua

index 65e6127c9a3288cd15fc1e7104edd9ecb51f49eb..00161159f62d3d6acdf1f641b1be02fb28d07c5d 100644 (file)
@@ -129,16 +129,6 @@ local function check_quantity_received (task)
   end
 end
 
--- Registration
-if type(rspamd_config.get_api_version) ~= 'nil' then
-  if rspamd_config:get_api_version() >= 1 then
-    rspamd_config:register_module_option('once_received', 'symbol', 'string')
-    rspamd_config:register_module_option('once_received', 'symbol_strict', 'string')
-    rspamd_config:register_module_option('once_received', 'bad_host', 'string')
-    rspamd_config:register_module_option('once_received', 'good_host', 'string')
-  end
-end
-
 local opts = rspamd_config:get_all_opt('options')
 if opts and type(opts) ~= 'table' then
   if type(opts['check_local']) == 'boolean' then
index ec1958fe118c70a92a9049107b71d0979eca7c53..11479df9ef199808fa4ddac117a8b36f4687bcde 100644 (file)
@@ -406,29 +406,6 @@ local function rbl_cb (task)
   end
 end
 
--- Registration
-if type(rspamd_config.get_api_version) ~= 'nil' then
-  if rspamd_config:get_api_version() >= 1 then
-    rspamd_config:register_module_option(N, 'rbls', 'map')
-    rspamd_config:register_module_option(N, 'default_ipv4', 'string')
-    rspamd_config:register_module_option(N, 'default_ipv6', 'string')
-    rspamd_config:register_module_option(N, 'default_received', 'string')
-    rspamd_config:register_module_option(N, 'default_from', 'string')
-    rspamd_config:register_module_option(N, 'default_rdns', 'string')
-    rspamd_config:register_module_option(N, 'default_helo', 'string')
-    rspamd_config:register_module_option(N, 'default_dkim', 'string')
-    rspamd_config:register_module_option(N, 'default_dkim_domainonly', 'string')
-    rspamd_config:register_module_option(N, 'default_unknown', 'string')
-    rspamd_config:register_module_option(N, 'default_exclude_users', 'string')
-    rspamd_config:register_module_option(N, 'default_exclude_private_ips', 'string')
-    rspamd_config:register_module_option(N, 'local_exclude_ip_map', 'string')
-    rspamd_config:register_module_option(N, 'default_exclude_local', 'string')
-    rspamd_config:register_module_option(N, 'default_emails', 'string')
-    rspamd_config:register_module_option(N, 'default_is_whitelist', 'string')
-    rspamd_config:register_module_option(N, 'default_ignore_whitelists', 'string')
-  end
-end
-
 -- Configuration
 local opts = rspamd_config:get_all_opt(N)
 if not (opts and type(opts) == 'table') then