Re: [exim] conditional transport filters?

Top Page
Delete this message
Reply to this message
Author: Felix Schwarz
Date:  
To: exim-users
Subject: 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