Re: [exim] Stumped on router conditions

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Graeme Fowler
Datum:  
To: exim-users
Betreff: Re: [exim] Stumped on router conditions
Even simpler -

router1:
condition = ${if ...

router1:
!condition = ${if ...

It's the exact same condition test, but in the first it'll run if the
condition returns true, and in the second if it's false.

Graeme