Browse Source

[Minor] Register some missing symbols

tags/2.6
Vsevolod Stakhov 4 years ago
parent
commit
1c748c7439
2 changed files with 8 additions and 1 deletions
  1. 1
    0
      src/plugins/lua/asn.lua
  2. 7
    1
      src/plugins/lua/greylist.lua

+ 1
- 0
src/plugins/lua/asn.lua View File

parent = id, parent = id,
type = 'virtual', type = 'virtual',
flags = 'empty', flags = 'empty',
score = 0,
}) })
end end
else else

+ 7
- 1
src/plugins/lua/greylist.lua View File

callback = greylist_set, callback = greylist_set,
priority = 6, priority = 6,
}) })
rspamd_config:register_symbol({
local id = rspamd_config:register_symbol({
name = 'GREYLIST_CHECK', name = 'GREYLIST_CHECK',
type = 'prefilter', type = 'prefilter',
callback = greylist_check, callback = greylist_check,
priority = 6, priority = 6,
}) })
rspamd_config:register_symbol({
name = settings.symbol,
type = 'virtual',
parent = id,
score = 0,
})
end end
end end

Loading…
Cancel
Save