Re: [Exim] local-part?

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Peter Galbavy
Data:  
Para: Chris Knipe, Gavin Dunne
CC: exim-users
Asunto: Re: [Exim] local-part?
> local_domains = boomboom.hitmenmusic.com : mysql:SELECT domain_name FROM
> domain WHERE *something* = $key


While essentially correct, you should maybe surround the test with single
quotes and remember the ${quote_...} stuff. Try:

local_domains = boomboom.hitmenmusic.com : mysql:SELECT domain_name FROM
domain WHERE domain_name = '${quote_mysql:$key}'

rgds,

Peter