Re: [exim] Stumped on router conditions

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