Re: [exim] alias domain

Página Inicial
Delete this message
Reply to this message
Autor: David Woodhouse
Data:  
Para: Peter Bowyer
CC: exim-users
Assunto: 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