Brandon Hilkert: > From: "Victor Duchovni" <victor.ducho...@morganstanley.com> > To: <postfix-users@postfix.org> > Sent: Monday, March 23, 2009 1:12 PM > Subject: Re: Mail drop > > > > On Mon, Mar 23, 2009 at 01:09:12PM -0400, Brandon Hilkert wrote: > > > >> Does postfix have the ability to send out emails placed in a specific > >> folder through the file system, or does it require a sendmail-style > >> command to get the sending invoked? > >> > >> If so, what folder will do this? > > > > http://www.postfix.org/OVERVIEW.html#receiving > > We have a large text file with contents of the eml message for each person > in a list. If I find a way to parse each email, is there an easy way to > inject them into the queue, rather than relaying, because as many have said > and through testing, we have found performance of sending local email to be > far superior than relaying?
With submission from a single master file, you would need one reader that feeds a pool of SMTP clients that send mail into Postfix. The alternative is to feed the messages into the Postfix sendmail command, but this loads the disk more than submission via SMTP, and moreover, delivery of local submissions has negligible parallelism. Wietse