ID: 37120 Updated by: [EMAIL PROTECTED] Reported By: brlcad at mac dot com -Status: Open +Status: Feedback Bug Type: Apache2 related Operating System: FreeBSD 5.2.1 PHP Version: 5.1.2 New Comment:
I suspect it has nothing to do with PHP and everything to do with the sendmail binary. It maybe hanging waiting for data, try to test the sendmail binary to see if it can be used to send e-mail. Previous Comments: ------------------------------------------------------------------------ [2006-04-18 13:06:21] brlcad at mac dot com Description: ------------ Using a default install of mod_php5 on FreeBSD, installed via an up-to-date ports, web pages calling mail() hang indefintely. This ends up hanging the associated apache process until it is manually killed. I can send mail fine from mail clients on the host, from mod_perl, by telnetting to port 25, just apparently not from mod_php5. I've tested using the default php.ini mail settings as well as setting sendmail_path explicitly with different debug options (e.g. /usr/local/sbin/sendmail -t -i -v -X /tmp/ sendmail.log). Sendmail does log that a connection is established and the e-mail is written to the log, but it never closes the connection and only aborts when apache is killed. This bug seems very familiar with php bug 22947 yet I'm not on Windows so perhaps just coincidence. Reproduce code: --------------- <?php $to = "[EMAIL PROTECTED]"; $subject = "Hi!"; $body = "Hello?"; echo("<p>sending mail</p>"); if (mail($to, $subject, $body)) { echo("<p>Message successfully sent!</p>"); } else { echo("<p>Message delivery failed...</p>"); } ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=37120&edit=1