Re: [PHP] Piping Error

2004-07-18 Thread Jason Wong
On Monday 19 July 2004 03:57, Jason Williard wrote: > I am working on creating a tool that processes mail for a support > system. The script works, but still sends a bounce message. > > Code: http://www.janix.net/test/mail.phps > > When the script processes the e-mail, it sends a bounce with the >

Re: [PHP] Piping Error

2004-07-18 Thread Justin Patrin
It could possibly be the return value of the script. It could also be that some "blank" output is happening. Try adding this to the command line: > /dev/null 2>&1 This will send all output to /dev/null and send all error output alto to /dev/null. On Sun, 18 Jul 2004 12:57:04 -0700, Jason Williard