Xemaps - can you explain your questions in detail or provide exact instructions on how to accomplish your suggestions?
In my case I have recompiled everything several times and updated to the latest versions and it still acts intermittently on php mail and sendmail depending on the destination email address while sending straight to SMTP works fine every time.
I had to add the following line to my crontab -e
9-59/10 * * * * /usr/sbin/exim -qff
and it is churning out whatever has been frozen by a "Signal 11 Segfault error" when trying to send by php mail or sendmail. So that new cronjob entry delivers the frozen mail every 10 minutes but it doesn't solve the actual problem - it is just a work around but it is a very effective one. I really want to solve this frozen email problem for everyone's sake - including mine. I noticed it is happening on all of my servers for any users so it is common across the entire family of servers I have. I have always had clients complaining but never been able to reproduce it consistently except to say that my clients would complain about the same symptoms of intermittent delivery depending on email address.
I tried a php mail script to test things out some more and it gets frozen on some destination domain names and not on others.
here is the php mail test script to create and put into your public_html folder
so that I could test the exim errors... I created a file called mailtest.php with this in it.
<?
echo "testing...<br>\n";
mail("
[email protected]","test","test2");
echo "done\n";
?>
and sent to myself by entering
http://mytestdomain.com/mailtest.php - then I sent it to several email addresses across the spectrum from private hosted sites to hotmail and gmail. Sometimes they work and sometimes they don't.
Some how the DNS is not resolving fast enough to prevent the Signal 11 seg fault. I have tried that theory off and on for the last few days with no measurable results. Or the segfault could be a memory problem but my servers have 2GB ram and are not even using the swap memory so I don't see that as a problem either.
According to this forum and jlasman's answers - it is a result of the resolv.conf not having a recursive DNS server as its first entry in that file. I have added my data center's recursive DNS server as the first entry in that /etc/resolv.conf file and I have not noticed any difference in the behavior.
Normally I have 127.0.0.1 and my server DNS IPs as the 3 entries in the /etc/resolv.conf file. I also have the /etc/named.conf set to allow recursion for the local IPs so that all requests from the server will work properly but still prevent requests from elsewhere from working. Either set up behaves the same. I have tried it with the recursion restrictions removed in /etc/named.conf and also noticed no difference in dependability.