Page 1 of 1

No bounce with built in SMTP server

Posted: Thu Jul 30, 2015 10:21 pm
by keithpstout
I recently installed OpenEMM 2015 on a cPanel server, which I have root access to. I decided to try the built in SMTP server to avoid having to install Sendmail, so I disabled Exim and ran the script to disable Sendmail in OpenEMM Everything is working fine, as far as sending mail but the bounce management is not working. Also, all mail to the server is returned with the message "Unknown user", which I believe is the reason invalid emails are not bouncing. Any help would be greatly appreciated.

Keith

Re: No bounce with built in SMTP server

Posted: Wed Aug 05, 2015 7:42 am
by ud
In general, the bounce management should work with the built in SMTP server. Unfortunately your information is a bit spare, so could you please do some checks:

Is there any WARNING/ERROR/FATAL message in the semu logfile? A problem in any other logfile, e.g. the update log?
Try sending mail to the designated mail address using telnet to view the communication protocol, e.g.

telnet localhost smtp
<wait for greeting>
HELO localhost
<wait for reply>
MAIL FROM:<some-email-address>
<wait for reply>
RCPT TO:<your-bounce-management-address>
<wait for reply>
QUIT

What is result of this communication?

-- ud