Install Test And Configure Postfix Mail Server

Setting up Postfix is relatively simple, but can become difficult if you don’t have the correct configuration details. This guide will assume that you have everything sorted out with your MX values and A records. The following guide was tested using postfix-2.6.6-6.el6_5.x86_64 on a centOS server.

Install Postfix

First things first you need to install postfix and dovecot. You may have these applications already installed by default, if this is the case for you then you can skip this step. The command to install these can differ depending on the particular distro of linux you are using. Generally they follow a similar format. The yum command is used for CentOS, Red Hat or any other distro that uses the RPM Package Manager.

yum install postfix
yum remove sendmail

Configure Postfix

The config file (main.cf) for postfix is typically located at “/etc/postfix/main.cf”. Open up this file and either add or uncomment the following lines. Make sure to replace the redacted entries with the actual details of your server. If you don’t add the correct domain and IP address details you will encounter errors.

myhostname = mail.domain.com
mydomain = domain.com
myorigin = $mydomain
inet_interfaces = all
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain, mail.$mydomain
mynetworks = 127.0.0.0/8, [::1]/128, server-ipv4-address, [server-ipv6-address]
relay_domains =
home_mailbox = Maildir/
Test SMTP With Telnet

Telnet is a helpful tool that will allow you to test whether you have successfully set up your server. You will need to make sure you have your domains A records set up correctly in order for smtp.domain.com to be read as a valid address. You can use telnet to send an email to an external email address or a local address. It’s best to test by sending an email to Gmail or another external host. First start by running the telnet command on the smtp address. Note: I will insert the entire output of this process at the end.

telnet smtp.domain.com 25

If everything went ok you will get a message that looks something like the following. Note: the actual addresses may differ e.g. mail.domain.com depending on how you have configured the A records.

Connected to smtp.domain.com.
Escape character is '^]'.
220 mail.domain.com ESMTP Postfix

If everything is well then you can begin the process of sending the email.

mail from:[email protected]

This should return OK. Now you must create the email that you are going to send to the recipient email.

rcpt to:[email protected]

This should also return OK. If the rcpt command returns a “Relay Access Denied” error, you will find a potential solution at the end of the post. If you it went smoothly then you can create the email. Do this by entering the following lines of code 1 after another.

!!NOTE!!
The “.” at the end is important! You need to paste the full stop at the end of the message. When you enter the full stop and click enter it will inform you that it has added the message to the queue.

data

Subject:Test Email

From:[email protected]

Testing postfix

.

quit

The sent message will often show up in your spam box so be sure to check your spam folder before you get worried about it not working correctly.

[root@vps69576 ~]# telnet smtp.domain.com 25
Trying ...
Connected to smtp.domain.com.
Escape character is '^]'.
220 mail.domain.com ESMTP Postfix
mail from:[email protected]
250 2.1.0 Ok
rcpt to:[email protected]
250 2.1.5 Ok
data
354 End data with .
Subject:Test Email From Teln^H^H^H
From:[email protected]
Testing email
.
250 2.0.0 Ok: queued as 73C82700F38
quit
221 2.0.0 Bye
Connection closed by foreign host.

Relay Access Denied Error

I came across this error and it took me a bit of messing around to figure out. Turns out to be quite a simple fix, but this may not always be the solution to this particular error. Hopefully it works for you.

This line will define where mail can be sent from.

"mynetworks = 127.0.0.0/8, [::1]/128, server-ipv4-address, [server-ipv6-address]"

Adding the correct addresses to this variable is important as you may end up getting a “Relay Access Denied” error when you attempt to send mail. You will need to add a few ip addresses to this variable. You will first need to add localhost which is 127.0.0.0/8, then you will need to add the ip addresse(s) of your server. It is best to add both ipv4 and ipv6 as I have ran into issues not having the ipv6 addresses. You must separate all addresses using a comma. ipv4 addresses are written down normally, but ipv6 addresses must be enclosed with square brackets [].

e.g. The following IP addresses apply to this domain

http://yomotherboard.com => 198.50.147.225, [2607:5300:100::3e0]

Related Articles

Related Questions

How to Set Up Jellyfin with a Large Media Library in Docker?

I'm running Jellyfin on my Ubuntu Server 24.xx and I'm considering switching to Docker for better management. However, I have a massive media collection...

Should I Upgrade to a 5800X3D or Stick with My Current Setup?

Hey everyone! I'm currently using a Ryzen 5 3600 paired with a Radeon 7900GRE and I have 16GB of RAM running at 3200MHz. I've...

Help with Windows Installation Error on Dell Inspiron

I attempted a clean install of Windows on my Dell Inspiron 2-in-1 laptop today, but I ran into an issue with my USB drive....

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Latest Tools

Online Hash Generator – String to Hash Converter

Need to quickly generate a hash from a string? Whether you're verifying file integrity, securing data, or just experimenting with cryptographic tools, this simple...

Convert CSV To HTML Table

Need to quickly turn CSV data into an HTML table? Whether you're copying data from Excel, Google Sheets, or another spreadsheet, this tool makes...

Student Group Randomizer

Creating fair and balanced groups in the classroom can be time-consuming — especially when you're trying to avoid repetition, manage different skill levels, or...

Random Group Generator

Need to split a list of people, items, or ideas into random groups? Our free Random Group Generator makes it quick and easy. Whether...

Flip Text Upside Down – Free Online Tool

Ever wanted to flip your text upside down just for fun or to grab someone’s attention in a creative way? This free online Upside...

Raffle Ticket Generator

If you're running a fundraiser, charity draw, or local event and need raffle tickets fast, this free online tool lets you generate and print...

Latest Posts

Latest Questions