Re: [exim] conditional transport filters?

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Felix Schwarz
Fecha:  
A: exim-users
Asunto: Re: [exim] conditional transport filters?
Am 06.05.2016 um 10:42 schrieb Jeremy Harris:
> - router headers_remove is awkward in two ways
> - colon separated list (differs from headers_add)
> - list-split before $-expansion, is nonstandard


Would that also enable conditions like:
headers_remove = ${if def:authenticated_id { Received }{} }
?

Currently (AFAIK!) the condition above is not possible and you have to use a
workaround like this:
headers_remove = ${if !eq{ $authenticated_id }{} { Received }{} }

Felix