Re: [PHP] Background process (sending mails)

2002-08-21 Thread Rasmus Lerdorf
You don't need to modify sendmail's config, you simply need to modify how you are calling sendmail from PHP. Chances are the server you are on already flushes the queue occasionally. You'd need to try to figure out how often, perhaps simply by trial and error. Since you have no control over the

Re: [PHP] Background process (sending mails)

2002-08-21 Thread Pupeno
Rasmus Lerdorf wrote: > Simply configure your MTA to queue requests coming from PHP. Your php.ini > file has the sendmail invocation line that is used by PHP's mail() > function. Most MTA's out there have a sendmail-like interface and most > have a way to tell it to simply queue the request and

Re: [PHP] Background process (sending mails)

2002-08-21 Thread Rasmus Lerdorf
Simply configure your MTA to queue requests coming from PHP. Your php.ini file has the sendmail invocation line that is used by PHP's mail() function. Most MTA's out there have a sendmail-like interface and most have a way to tell it to simply queue the request and return immediately. For sendm

[PHP] Background process (sending mails)

2002-08-21 Thread Pupeno
I know this issue have been discussed a lot of times but I checked a lot of archives and documents and I couldn't find any solution. What I want to do is send a lot of mails (belive me, it's not spamming) and I thought about running the process of sending mails in background (detached from the