diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2016-11-05 12:56:24 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2016-11-05 12:56:24 +0300 |
commit | f13aa16ee4785ba47530f09190c3d48aa659f162 (patch) | |
tree | e237c80e681c133f358f524fc5a5d6c555e30d38 /src/plugins | |
parent | 2dd933f9e8c6a0d907e5b16b04944f6a419794b6 (diff) | |
download | rspamd-f13aa16ee4785ba47530f09190c3d48aa659f162.tar.gz rspamd-f13aa16ee4785ba47530f09190c3d48aa659f162.zip |
[Minor] Add another missing `fun` module local reference
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/lua/dcc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/dcc.lua b/src/plugins/lua/dcc.lua index 08fca893f..cd8f76de2 100644 --- a/src/plugins/lua/dcc.lua +++ b/src/plugins/lua/dcc.lua @@ -49,7 +49,7 @@ local function check_dcc (task) local envrcpt = 'test@example.com' local rcpts = task:get_recipients(); if rcpts then - local r = table.concat(fun.totable(map(function(rcpt) + local r = table.concat(fun.totable(fun.map(function(rcpt) return rcpt['addr'] end, rcpts)), '\n') if r then |