Re: [Exim] local-part?

Pàgina inicial
Delete this message
Reply to this message
Autor: Peter Galbavy
Data:  
A: Chris Knipe, Gavin Dunne
CC: exim-users
Assumpte: 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