Re: [Exim] transport - pipe problem, not passing ARGV's

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Andreas J Mueller
Data:  
Para: Darren Casey
CC: exim-users
Asunto: Re: [Exim] transport - pipe problem, not passing ARGV's
Hi Darren!

> I have the following transport
> program:
> driver = pipe
> user = admin
> group = users
> command = /home/admin/t ${lookup mysql {MYSQL_SPOOL}{$value}}


You have to write

command = /home/admin/t "${lookup mysql {MYSQL_SPOOL}{$value}}"

because string expansion is done individually for space separated
arguments.

Andy