• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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