• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Postfix and submission port 587 not working

C

codesmith

Guest
After recent upgrade to 9.2.3 and now Postfix pop mail has stopped being accessible on port 587. Not sure why - this telnet session seems to indicate it's ok:

$ telnet xx.com 587
Trying xx.xx.xx.xx...
Connected to xx.com.
Escape character is '^]'.
220 xx.com ESMTP Postfix

but mail retrieval fails. I looked at the Parallels KB but couldn't anything specific on the submission port and just a general how to do any port. Followed instructions but postfix stopped working entirely. Here's a relevant line from /etc/postfix/master.cf:

submission inet n - - - - smtpd -o smtpd_enforce_tls=yes -o smtpd_sasl_auth_enable=yes -o smtpd_client_restrictions=permit_sasl_authenticated,reject -o smtpd_sender_restrictions= -o smtpd_proxy_filter=127.0.0.1:10025

Any ideas appreciated.
 
Try to re-enable submission with

/usr/local/psa/admin/bin/mailmng -b
rm -f /var/spool/postfix/plesk/master.cf.disabled
/usr/local/psa/admin/bin/mailmng -a

try to rebuild mailsettings with 'mchk --with-spam'
 
Thanks for the reply - I ended up just copying the same parms as the line for smtp and it's now working:

submission inet n - - - - smtpd -o smtpd_proxy_filter=127.0.0.1:10025
 
Back
Top