diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-06-11 17:37:54 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2021-06-11 17:37:54 +0100 |
commit | 22054fc05d81a133a0f401d525e8b2282c6d488c (patch) | |
tree | b0e06809c8002af9ef0569575ea737a817758b90 /src/plugins | |
parent | 69f9feb219ec6a7219d88016fb054b5da929bf7b (diff) | |
download | rspamd-22054fc05d81a133a0f401d525e8b2282c6d488c.tar.gz rspamd-22054fc05d81a133a0f401d525e8b2282c6d488c.zip |
[Minor] Fix misprint
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/lua/multimap.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/multimap.lua b/src/plugins/lua/multimap.lua index c9b68ba05..e519e92b2 100644 --- a/src/plugins/lua/multimap.lua +++ b/src/plugins/lua/multimap.lua @@ -243,7 +243,7 @@ local function apply_addr_filter(task, filter, input, rule) return fun.totable(fun.map(function(a) return a.user end, addr)) end elseif filter == 'email:domain' then - local addr = util.parse_mail_address(input, task:get_mempool(, 1024) + local addr = util.parse_mail_address(input, task:get_mempool(), 1024) if addr and addr[1] then return fun.totable(fun.map(function(a) return a.domain end, addr)) end |