Re: [Exim] local-part?

Etusivu
Poista viesti
Vastaa
Lähettäjä: Peter Galbavy
Päiväys:  
Vastaanottaja: Chris Knipe, Gavin Dunne
Kopio: exim-users
Aihe: 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