1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
rspamd_config:register_symbol({
name = 'TBL_OPTION_ORDER',
score = 1.0,
callback = function()
return true, {'one', 'two', 'three', '4', '5', 'a'}
end
})
rspamd_config:register_symbol({
name = 'OPTION_ORDER',
score = 1.0,
callback = function()
return true, 'one', 'two', 'three', '4', '5', 'a'
end
})
|