From 87cdd1fa3ac9a7e989195ec224c9a69840ff994d Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 16 Sep 2015 18:05:54 +0100 Subject: Use tld for whitelisting. --- src/plugins/lua/whitelist.lua | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/plugins/lua/whitelist.lua b/src/plugins/lua/whitelist.lua index b7718636e..0a78a1d43 100644 --- a/src/plugins/lua/whitelist.lua +++ b/src/plugins/lua/whitelist.lua @@ -41,17 +41,12 @@ local function whitelist_cb(symbol, rule, task) local from = task:get_from(1) if from and from[1] and from[1]['domain'] then local domain = from[1]['domain'] - local url_domain = rspamd_url.create('http://' .. domain) + local url_domain = rspamd_url.create(task:get_mempool(), 'http://' .. domain) local found = false local mult = 1.0 if url_domain then - -- Get tld + 1 component - local tld = url_domain:get_tld() - local host = url_domain:get_host() - - domain = string.match(host, string.format('[^.].%s$', tld) - rspamd_logger.errx(domain) + domain = url_domain:get_tld() end if rule['map'] then -- cgit v1.2.3