views:

1203

answers:

4

I'm using the PHP mail() function to send emails from a Linux server, but using Exchange as the main MTA. To achieve this sendmail has been set up to relay everything to the local Exchange server, which then sends the emails out.

This is working correctly, but the PHP script seems to wait until the timeout limit before finishing. I thought perhaps it's waiting for a response from sendmail, which doesn't come becomes it's just a relay?

I specified the php.ini command line option for "sendmail_path" -odb, which should start sendmail with the "background" delivery mode, meaning to fire off emails in a separate process and then immediately return. But it still takes 30 seconds for the PHP script to end.

Anyone have any ideas? I'm a bit stumped. Thanks.

A: 

If it's any help my sendmail_path looks like this:

sendmail_path = /usr/sbin/sendmail -t -i
Neel
A: 

An indirect solution.

What we do is use php's system() to send emails in the background so the user doesnt have to wait for the email to go out.

something like this...

<? //sendEmail.php
mail(argv[1], argv[2], argv[3]);
?>



//your sciprt
<?
...
system("php sendEmail.php [email protected] 'subject' 'message' 1>/dev/null 2>&1 &");
...
A: 

An alternative might be to use PEAR's Mail. I have used it to send emails to qmail and Exchange SMTP servers.

Chris Kloberdanz
+1  A: 

Can't say much without looking at the php/mail logs. But why don't you send from PHP directly to your MTA of choice? just use a library like PHPMailer and the authentication will be easy.

Also for debugging purposes you could install postfix (on linux with a package manager takes 3 seconds) and set it up as relay, Postfix logs are pretty extensive on verbose mode and you could discover if sendmail was your bottleneck.

pablasso