exim smtp error

S

SACHIN

Guest
HI,


I am unable to send mail using php scripts. i am getting following error while sending mail using php scripts.

T=remote_smtp defer (-1): smtp transport process returned non-zero status 0x000b: terminated by signal 11

Please let me know how to fix.
 

jpetersen

Well-Known Member
Dec 31, 2006
113
5
168
Googling for: "smtp transport process returned non-zero status"

yields the following:

If you are receiving this error in your /var/log/exim/mainlog:

Code:
2006-01-10 23:01:14 1EwHYJ-0002q0-6y == [email protected] R=lookuphost T=remote_smtp defer (-1): smtp transport process returned non-zero status 0x000b: terminated by signal 11

Then you can fix the issue by editing your /etc/exim.conf, and changing the following code:

Code:
remote_smtp:
  driver = smtp
To be:

Code:
remote_smtp:
  driver = smtp
  hosts_avoid_tls=*
Save, exit, then restart exim.

More information can be found on the hosts_avoid_tls option in section 38.8 of the Exim spec, located here:
http://exim.org/exim-html-4.50/doc/html/spec_38.html#SECT38.8

Note that if you attempt to implement this change, you should do so via the Exim configuration editor in WHM, otherwise your changes to exim.conf will be overwritten at some point. Alternately, you can make the changes directly to exim.conf just to test if it works, and if it does, add it via the Exim configuration editor.
 

mctDarren

Well-Known Member
Jan 6, 2004
665
9
168
New Jersey
cPanel Access Level
Root Administrator
Or you might try following these steps:

1. Log into WHM
2. Click Tweak Settings under Server Configuration
3. Find the checkbox for "Prevent the user "nobody" from sending out mail to remote addresses" and uncheck it.
4. Click Save at page bottom

Not sure if this was the problem, but would be my first guess... :)