Re: [exim] alias domain

Etusivu
Poista viesti
Vastaa
Lähettäjä: David Woodhouse
Päiväys:  
Vastaanottaja: Peter Bowyer
Kopio: exim-users
Aihe: Re: [exim] alias domain
On Mon, 2004-09-06 at 18:47 +0100, Peter Bowyer wrote:
> forwarddomainfromfile:
> driver = redirect
> domains = lsearch;/path/to/file
> data = $local_part@${lookup {$domain} lsearch {/path/to/file}}


The left hand side of that 'data' should be escaped, and I think the RHS
can be expressed simply as '$domain_data' rather than repeating the
lookup (although it would be cached so that's mostly cosmetic).

So:
    data = ${quote_local_part:$local_part}@$domain_data


--
dwmw2