• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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