diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-12-07 17:19:27 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-12-07 17:19:27 +0000 |
commit | de5ca6a560b221ebd4ac908e384e61619fc1599b (patch) | |
tree | fd3aacc76a511f9f667101a8c88f6dcaff1d317a /src/plugins/lua/rbl.lua | |
parent | 76feec45344eb8de53ef0ae66a4a2b29853c99fc (diff) | |
download | rspamd-de5ca6a560b221ebd4ac908e384e61619fc1599b.tar.gz rspamd-de5ca6a560b221ebd4ac908e384e61619fc1599b.zip |
[Minor] Add default
Diffstat (limited to 'src/plugins/lua/rbl.lua')
-rw-r--r-- | src/plugins/lua/rbl.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index 744785011..32eb4f2d0 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -219,8 +219,10 @@ local function rbl_cb (task) local havegot = { emails = {}, - received = {} + received = {}, + dkim = {}, } + local notgot = {} local alive_rbls = fun.filter(function(_, rbl) |