Some internet access providers have port 25 disabled in their routers to prevent spam. If you run your own email server in a data center, you might have to enable the submission port (587) in postfix to be able to send emails from your local email client to your own mail server.
To enable port 587, edit the file /etc/postfix/master.cf
nano /etc/postfix/master.cf
and remove the # in front of the line:
# submission inet n - y - - smtpd
so that it looks like this:
submission inet n - y - - smtpd
and restart postfix:
systemctl restart postfix
The post How to enable port 587 (submission) in postfix appeared first on FAQforge.
This article provides a guide to deploy ScyllaDB on Ubuntu VPS. What is ScyllaDB? ScyllaDB…
This article demonstrates how to harden security of VPS server and is intended for server…
In this blog post, we will guide you on how to install wget on Ubuntu…
Jan 27,2026 Xfwl4 - The roadmap for a Xfce Wayland Compositor We, the Xfce team…
This article provides a step-by-step how-to guide to deploy n8n on Ubuntu VPS. What is…
In July 2025, git received CVE-2025-48384, a high vulnerability allowing arbitrary code execution when cloning…