Re: faster than bcc

2001-03-29 Thread Dave Sill
Charles Cazabon [EMAIL PROTECTED] wrote: Dave Sill [EMAIL PROTECTED] wrote: cat list.txt | xargs qmail-inject -a message.txt where list.txt is a list of addresses. Is this faster than bcc anyway? No. That creates one message per recipient--lots of disk I/O to do the same thing as one

Re: faster than bcc

2001-03-28 Thread Charles Cazabon
Brett [EMAIL PROTECTED] wrote: I remember reading that the fastest way to send one email to a large number of people is through bcc. It's faster than injecting a separate message for each recipient. As you suspected, bcc'ing the recipients on one message means only one message in the queue,

Re: faster than bcc

2001-03-28 Thread Peter van Dijk
list.txt is a list of addresses. Is this faster than bcc anyway? Any help much appreciated. Bcc is indeed efficient, because it only injects one message into the queue. The xargs method is quite efficient, but not as efficient as the Bcc trick. Note too that the Bcc trick is only guaranteed to work

Re: faster than bcc

2001-03-28 Thread Dave Sill
args qmail-inject -a message.txt where list.txt is a list of addresses. Is this faster than bcc anyway? No. That creates one message per recipient--lots of disk I/O to do the same thing as one message, many recipients. -Dave

Re: faster than bcc

2001-03-28 Thread Mark Delany
and the cost saving is too small to measure for a large recipient list. One suggestion I got but which I can't get to work is: cat list.txt | xargs qmail-inject -a message.txt where list.txt is a list of addresses. Is this faster than Bcc: anyway? Any help much appreciated. In what way can't you

RE: faster than bcc

2001-03-28 Thread Brett
Mark, you rule. This has been a tremendous help. Thanks a lot. Brett. -Original Message- From: Mark Delany [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 1:45 PM To: Brett Cc: [EMAIL PROTECTED] Subject: Re: faster than bcc On Wed, Mar 28, 2001 at 12:47:25PM -0800, Brett

Re: faster than bcc

2001-03-28 Thread Charles Cazabon
Dave Sill [EMAIL PROTECTED] wrote: cat list.txt | xargs qmail-inject -a message.txt where list.txt is a list of addresses. Is this faster than bcc anyway? No. That creates one message per recipient--lots of disk I/O to do the same thing as one message, many recipients. That should still

RE: faster than bcc

2001-03-28 Thread Brett
Thank you everyone for your input. I know now that I'm on the right track with bcc. -Original Message- From: Charles Cazabon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 2:26 PM To: [EMAIL PROTECTED] Subject: Re: faster than bcc Dave Sill [EMAIL PROTECTED] wrote: cat