Postfix is fast and popular SMTP server widely used. The main job of postfix is to relay mail locally or to intended destination outside the network. Some of the most popular SMTP servers are Sendmail, Postfix and Qmail. By default Sendmail comes pre-installed with CentOS/RHEL 5. We will need to remove it and install Postfix.
Step 1: Install Postfix
If Postfix not already installed on your machine, Install it using following command. Also remove sendmail if already installed.
Make postfix as default MTA for your system using following command
If above command not work and you get output as “
Step 2: Configure Postfix
Let’s start postfix configuration. Edit Postfix configuration file /etc/postfix/main.cf in your favorite editor and make following changes.
After executing above command edit postfix configuration file and make sure all changes done properly.
Step 3: Restart Postfix Service
As we have done basic Postfix configuration, So restart Postfix service to read changes of configuration. Also configure to auto start on system boot.
Step 4: Open Firewall Port
Now if your system is configured to use iptables firewall, So add firewall rules to make postfix accessible from outside, using following commands.
Thanks for using this article.