Philip Hazel Wrote : >It is not clear from your message how you are running your script, but
>if you are using a pipe transport, Exim writes the message to the
>program's standard input.
yes , I am using pipe transport like
perl_pipe:
driver = pipe
command = "/usr/local/bin/perlautomail.pl"
user = mail
group = mail
I tried reading STDIN, but I get the entire raw mail itself, but I am
looking for only the body to quote while auto respoding back. any other
way to pass the orginal message_body to the program either by pipe or is
there anyother transport/way to exeucte the perl program ?
thanks a lot
ewzi
>> I worte a small perl auto-responder program which is running as pipe >> and works fine.
>>
>> but I am not able to get anything of the orginal message body so as to
>> quote it in the reply, the var $message_body is blank allways, anything
>> to be done so that exim passes the message body to the piped program ?