Re: [exim] exim acl checks

Top Page
Delete this message
Reply to this message
Author: Paulo Andre
Date:  
To: Paulo Andre
CC: exim
Subject: Re: [exim] exim acl checks
Paulo Andre wrote:
> I have created a domain (test.darkstar.nom.za) and would like all email
> that start with following '+27' to be delivered to an account.
> eg. +270113200000@??? to be delivered to
> user@???
> Is this possible and if so how?
>
> Thanks
> Paulo
>


After some more investigating I have come up with the following:

I have set up a system wide filter

if $h_to: contains "+27"
then
deliver user@???
endif

Now this would be valid for all domains, what would be the better way to
limit this to one domain?

Paulo