Thanks for the reply. I'm aware it's not a good design, which is why I also asked for suggestions for better ways to accomplish my purpose :) I'm going to try the subethasmtp java smtp server.
________________________________ From: Victor Duchovni <victor.ducho...@morganstanley.com> To: postfix-users@postfix.org Sent: Mon, October 11, 2010 3:26:13 PM Subject: Re: Newb question - simple script On Mon, Oct 11, 2010 at 02:07:20PM -0700, jimmy zoto wrote: > I'm trying to copy all incoming mail to a local FIFO file for special > purpose processing by a Java program. I don't know the best way to do this. This sounds like a bad design. It is unlikely that your FIFO has any way to indicate success or failure. You probably can't indicate the end of the message to the FIFO listener. Your FIFO probably can't support parallel delivery. There are likely many more issues. Even if you solve your apparent problem, your real problem (bad design) will not be solved. -- Viktor.