• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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