if munging_opts.munge_map_condition then
local accepted, trace = munging_opts.munge_map_condition:process(task)
if not accepted then
- lua_util.debugm(task, 'skip munging, maps condition not satisfied: (%s)',
+ lua_util.debugm(N, task, 'skip munging, maps condition not satisfied: (%s)',
trace)
-- Excepted
return
end
if not rcpt_found then
- lua_util.debugm(task, 'skip munging, recipients are not in list_map')
+ lua_util.debugm(N, task, 'skip munging, recipients are not in list_map')
-- Excepted
return
end
local from = task:get_from({ 'mime', 'orig' })
if not from or not from[1] then
- lua_util.debugm(task, 'skip munging, from is bad')
+ lua_util.debugm(N, task, 'skip munging, from is bad')
-- Excepted
return
end