aboutsummaryrefslogtreecommitdiffstats
path: root/test/functional/lua/option_order.lua
blob: caff30f908ac18bf2c51d2c1174362d1bbbc029a (plain)
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
})