Re: [Exim] local-part?

Page principale
Supprimer ce message
Répondre à ce message
Auteur: Peter Galbavy
Date:  
À: Chris Knipe, Gavin Dunne
CC: exim-users
Sujet: 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