aboutsummaryrefslogtreecommitdiffstats
path: root/test/functional/lua/get_from.lua
blob: 4e3267b41f040c7f54a3066eefcce2fcc35f8fd1 (plain)
1
2
3
4
5
6
7
8
rspamd_config:register_symbol({
  name = 'SIMPLE_TEST',
  score = 1.0,
  callback = function(task)
    local a = task:get_from('mime')[1]
    task:insert_result('GET_FROM', 0.0, a.name .. ',' .. a.addr .. ',' .. a.user .. ',' .. a.domain)
  end
})