Re: [exim] conditional transport filters?

Góra strony
Delete this message
Reply to this message
Autor: Felix Schwarz
Data:  
Dla: exim-users
Temat: 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