Re: [exim] Q0605 and lists?

Top Pagina
Delete this message
Reply to this message
Auteur: Tom Kistner
Datum:  
Aan: Jan Johansson
CC: exim users
Onderwerp: Re: [exim] Q0605 and lists?
Jan Johansson wrote:
> Is it possible to use a domain list in retry configurations? I have tried,
> but I can't seem to get it to work. I would like to implement
> reject-on-quota for +xams_domains? (Exim 4.63)


I think it only works with addresslists. However you can prefix each
domain with '*@' to achieve the same effect. Here's what I have done:


# Build fake addresslist from our routed domains
addresslist retry_relax = *@${sg {${lookup mysql{SELECT DISTINCT domain
FROM routes}{$value}fail}}{\n}{:*@}}


And in the retry section:

+retry_relax           *           F,31d,30m;



/tom