Re: [PHP] OS need anything for mail() to work?

2008-04-28 Thread Richard Lynch
On Mon, April 28, 2008 3:09 pm, Jason Pruim wrote: > > On Apr 28, 2008, at 3:47 PM, Richard Lynch wrote: > >> On Fri, April 25, 2008 3:44 pm, Brian Dunning wrote: >>> Is there any way for PHP to know that this email is not going >>> through? >> >> You could, perhaps, hack your MTA to notify somethi

Re: [PHP] OS need anything for mail() to work?

2008-04-28 Thread Jason Pruim
On Apr 28, 2008, at 4:13 PM, Shawn McKenzie wrote: Jason Pruim wrote: On Apr 28, 2008, at 3:47 PM, Richard Lynch wrote: On Fri, April 25, 2008 3:44 pm, Brian Dunning wrote: Is there any way for PHP to know that this email is not going through? You could, perhaps, hack your MTA to notify s

Re: [PHP] OS need anything for mail() to work?

2008-04-28 Thread Shawn McKenzie
Jason Pruim wrote: On Apr 28, 2008, at 3:47 PM, Richard Lynch wrote: On Fri, April 25, 2008 3:44 pm, Brian Dunning wrote: Is there any way for PHP to know that this email is not going through? You could, perhaps, hack your MTA to notify something somewhere that PHP can check... But it's re

Re: [PHP] OS need anything for mail() to work?

2008-04-28 Thread Jason Pruim
On Apr 28, 2008, at 3:47 PM, Richard Lynch wrote: On Fri, April 25, 2008 3:44 pm, Brian Dunning wrote: Is there any way for PHP to know that this email is not going through? You could, perhaps, hack your MTA to notify something somewhere that PHP can check... But it's really out of PHP's h

Re: [PHP] OS need anything for mail() to work?

2008-04-28 Thread Richard Lynch
On Fri, April 25, 2008 3:44 pm, Brian Dunning wrote: > Is there any way for PHP to know that this email is not going through? You could, perhaps, hack your MTA to notify something somewhere that PHP can check... But it's really out of PHP's hands at this point. If you put a letter in a mailbox,

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Shawn McKenzie
Shawn McKenzie wrote: Brian Dunning wrote: Is there any way for PHP to know that this email is not going through? On Apr 25, 2008, at 1:21 PM, Eric Butera wrote: Apr 24 17:03:34 MacBrian postfix/error[10699]: F19D21287847: to=<[EMAIL PROTECTED]>, relay=none, delay=4470, delays=4440/30/0/0, ds

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Shawn McKenzie
Shawn McKenzie wrote: Brian Dunning wrote: Is there any way for PHP to know that this email is not going through? On Apr 25, 2008, at 1:21 PM, Eric Butera wrote: Apr 24 17:03:34 MacBrian postfix/error[10699]: F19D21287847: to=<[EMAIL PROTECTED]>, relay=none, delay=4470, delays=4440/30/0/0, ds

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Shawn McKenzie
Brian Dunning wrote: Is there any way for PHP to know that this email is not going through? On Apr 25, 2008, at 1:21 PM, Eric Butera wrote: Apr 24 17:03:34 MacBrian postfix/error[10699]: F19D21287847: to=<[EMAIL PROTECTED]>, relay=none, delay=4470, delays=4440/30/0/0, dsn=4.4.1, status=deferre

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Eric Butera
On Fri, Apr 25, 2008 at 4:44 PM, Brian Dunning <[EMAIL PROTECTED]> wrote: > Is there any way for PHP to know that this email is not going through? > > > On Apr 25, 2008, at 1:21 PM, Eric Butera wrote: > > > > > > > > > > Apr 24 17:03:34 MacBrian postfix/error[10699]: F19D21287847: > > > to=<[EMAIL

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Brian Dunning
Is there any way for PHP to know that this email is not going through? On Apr 25, 2008, at 1:21 PM, Eric Butera wrote: Apr 24 17:03:34 MacBrian postfix/error[10699]: F19D21287847: to=<[EMAIL PROTECTED]>, relay=none, delay=4470, delays=4440/30/0/0, dsn=4.4.1, status=deferred (delivery temporaril

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Eric Butera
On Fri, Apr 25, 2008 at 4:16 PM, Brian Dunning <[EMAIL PROTECTED]> wrote: > Here is what the log shows for the attempts: > > Apr 24 17:03:34 MacBrian postfix/error[10699]: F19D21287847: > to=<[EMAIL PROTECTED]>, relay=none, delay=4470, delays=4440/30/0/0, > dsn=4.4.1, status=deferred (delivery tem

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Stut
On 25 Apr 2008, at 21:16, Brian Dunning wrote: Here is what the log shows for the attempts: Apr 24 17:03:34 MacBrian postfix/error[10699]: F19D21287847: to=<[EMAIL PROTECTED] >, relay=none, delay=4470, delays=4440/30/0/0, dsn=4.4.1, status=deferred (delivery temporarily suspended: connect to

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Brian Dunning
Here is what the log shows for the attempts: Apr 24 17:03:34 MacBrian postfix/error[10699]: F19D21287847: to=<[EMAIL PROTECTED] >, relay=none, delay=4470, delays=4440/30/0/0, dsn=4.4.1, status=deferred (delivery temporarily suspended: connect to skeptoid.com[72.32.102.215]: Operation timed o

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Jason Pruim
On Apr 25, 2008, at 2:07 PM, Brian Dunning wrote: I'm running PHP 5.2.5 on OS X 10.5.2, and using the following code: ini_set('sendmail_from','[EMAIL PROTECTED]'); ini_set('SMTP','working.server.com'); mail('[EMAIL PROTECTED]', 'Subject', 'Message'); The servers and addresses are KNOWN TO WOR

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Eric Butera
On Fri, Apr 25, 2008 at 2:07 PM, Brian Dunning <[EMAIL PROTECTED]> wrote: > I'm running PHP 5.2.5 on OS X 10.5.2, and using the following code: > > ini_set('sendmail_from','[EMAIL PROTECTED]'); > ini_set('SMTP','working.server.com'); > mail('[EMAIL PROTECTED]', 'Subject', 'Message'); > > The se

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Stut
On 25 Apr 2008, at 19:07, Brian Dunning wrote: I'm running PHP 5.2.5 on OS X 10.5.2, and using the following code: ini_set('sendmail_from','[EMAIL PROTECTED]'); ini_set('SMTP','working.server.com'); mail('[EMAIL PROTECTED]', 'Subject', 'Message'); The servers and addresses are KNOWN TO WORK, I

Re: [PHP] OS need anything for mail() to work?

2008-04-25 Thread Robert Cummings
On Fri, 2008-04-25 at 11:07 -0700, Brian Dunning wrote: > I'm running PHP 5.2.5 on OS X 10.5.2, and using the following code: > > ini_set('sendmail_from','[EMAIL PROTECTED]'); > ini_set('SMTP','working.server.com'); > mail('[EMAIL PROTECTED]', 'Subject', 'Message'); > > The servers and addresses

[PHP] OS need anything for mail() to work?

2008-04-25 Thread Brian Dunning
I'm running PHP 5.2.5 on OS X 10.5.2, and using the following code: ini_set('sendmail_from','[EMAIL PROTECTED]'); ini_set('SMTP','working.server.com'); mail('[EMAIL PROTECTED]', 'Subject', 'Message'); The servers and addresses are KNOWN TO WORK, I use this same code and same info on a number o