From a027d39738c405344f30e1b97819e461b627da2a Mon Sep 17 00:00:00 2001 From: Andrew Lewis Date: Tue, 16 May 2017 14:12:02 +0200 Subject: [PATCH] [Feature] Multimap: email:domain:tld filter --- src/plugins/lua/multimap.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/plugins/lua/multimap.lua b/src/plugins/lua/multimap.lua index 1db4b7967..0a1cf15b5 100644 --- a/src/plugins/lua/multimap.lua +++ b/src/plugins/lua/multimap.lua @@ -227,6 +227,11 @@ local function apply_addr_filter(task, filter, input, rule) if addr and addr[1] then return addr[1]['domain'] end + elseif filter == 'email:domain:tld' then + local addr = util.parse_mail_address(input, task:get_mempool()) + if addr and addr[1] then + return util.get_tld(addr[1]['domain']) + end elseif filter == 'email:name' then local addr = util.parse_mail_address(input, task:get_mempool()) if addr and addr[1] then -- 2.39.5