<html><body><div style="font-family: arial, helvetica, sans-serif; font-size: 10pt; color: #000000"><blockquote style="border-left:2px solid #1010FF;margin-left:5px;padding-left:5px;color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><b>From: </b>"Tim Johnson" &lt;tim@akwebsoft.com&gt;<br><b>To: </b>"Drupal Support ML" &lt;support@drupal.org&gt;<br><b>Sent: </b>Wednesday, December 11, 2013 3:06:26 PM<br><b>Subject: </b>[support] Unable to send e-mail. Contact the site administrator if&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the problem persists<br><div><br></div>I'm using version 7.24. Recently upgraded. I have a site running on<br>my desktop which is "pushed" to my domain hoster (as the "deployed<br>site" )as I update it.<br><div><br></div>I am now getting (constantly) error messages as per the subject line<br>"Unable to send e-mail. Contact the site administrator if the<br>problem persists" Sometimes, I actually can send mail, sometimes<br>not. <br>Most disturbingly, that message shows when I fill out and send a<br>contact from the deployed site as an anonymous user.<br><div><br></div>Even though I do received the message.<br>--------------------------------------<br><div><br></div>I have googled this issue and it looks like this issue is tripping<br>up many drupalists.<br><div><br></div>I have installed the smtp authentication module and am still getting<br>the same messages. Sometimes a dozen or more when I do something as<br>admin.<br><div><br></div>In fact, I have problems sending test emails from the smtp auth<br>module.<br><div><br></div>Reports and Logs:<br>Status Report shows no problems.<br><div><br></div>Logs show errors sending mail, but no helpful messages.<br><div><br></div>Systems logs (/private/var/log/mail.log on Mac OSX 10.7) shows<br>something like :<br>"Dec 11 13:46:51 linus postfix/smtpd[4581]: connect from<br>localhost[127.0.0.1]<br>Dec 11 13:46:51 linus postfix/smtpd[4581]: lost connection after<br>RSET from localhost[127.0.0.1]<br>Dec 11 13:46:51 linus postfix/smtpd[4581]: disconnect from<br>localhost[127.0.0.1]"<br><div><br></div>This is very bad for my business site. <br>Any ideas, Please?</blockquote><div>Hi Tim,<br></div><div><br></div><div>Let's split the problem.&nbsp; Let's test your PHP mail capability first, before we conclude it is Drupal.&nbsp; Ddjust the $to and $from accordingly, copy this to &lt;drupal root&gt;/sites/mail.php and ask for <a href="http://<www...>/sites/mail.php">http://&lt;www...&gt;/sites/mail.php</a>.&nbsp; If you see "Mail Sent", then that begins to exonerate your PHP mail configuration.<br></div><div><br></div><div>&lt;?php<br>$to = "demo@tryx.org";<br>$subject = "Test mail";<br>$message = "Hello! This is a simple email message.";<br>$from = "demo1@tryx.org";<br>$headers = "From:" . $from;<br>mail($to,$subject,$message,$headers);<br>echo "Mail Sent.";<br>?&gt;<br><br></div><div><br></div><div>Chris.<br></div></div></body></html>