Checking Postfix
Postfix provides a tool that will check the configuration and function of the program. The tool has a simple command that if it does not have any output then the check is successful.
postfix check
If you do receive output then you will need to correct any problems. Another good place to look for problems is the ...
Aliases
It is important for Postfix to be able to use the alias file on the server (/etc/aliases). To ensure that it is in a format that Postfx can use run the newaliases command.
newaliases
or run this command
postalias
The alias file is created in a database that can be used both by Sendmail and Postfix. This has been done so that if you migrate from a Sendmail installation you will be able to move easily to Postfix and use the same aliases. ...
Changes Necessary for Network Connections
Just like Sendmail, Postfix will not accept connections from other computers until you take a few steps to enable it. There are several lines that must be uncommented and then your configuration placed in it. The example will assume that your domain is example.org and the FQDM is ...
Identity
The Postfix mail server has 4 major identity features that will need to be considered. These identity features are very important in terms how the server is able to communicate on the Internet because it is so closely tied to DNS, just like all mail servers.
myhostname
Postfix requires a fully qualified domain name or FQDN. A FQDN includes the hostname of the server as well as the domain name like this:
mail.example.org
This includes the ...