This document aims to provide the reader with a detailed understanding of the various components of an email system, including its installation and basic configuration.
All commands in this document are executed using root(uid=0).
What is a DNS zone? A DNS zone is a portion of the DNS namespace hosted on a DNS server. A DNS zone contains resource records, and a DNS server responds to queries for records in that namespace. A DNS server can have multiple DNS zones. Simply put, a DNS zone is analogous to a book catalog.
The password entries for the relevant email users are not shown here, as it requires using doveadm pw -s SHA512-crypt -p twotestandtwo command. See here
SHA-2: includes SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224, and SHA-512/256
SHA-3
In the SHA-2 hashing standard, the number in the algorithm refers to the digest length in bits.
It is well known that in Rocky Linux 8 and other RHEL 8 variants, the default algorithm used to encrypt user passwords is SHA-512. To fetch the set algorithm:
The information shown in the hash (separated by $) is as follows:
6: It means id. The SHA-512 encryption algorithm is fixed at 6.
8jpmvCw8RqNfHYW4: Also known as "salt". Its main function is to increase security and improve the difficulty of cracking. The system can randomly generate it, or it can be specified manually.
pOlsEZG066eJuTmNHoidtvfWHe/6HORrKkQPwv4eyFxqGXKEXhep6aIRxAtv7FDDIq/ojIY1SfWAQkk7XACeZ0: 86 fixed number of characters. Refers to ciphertext passwords generated by using encryption algorithms.
The explanation of these parameters is as follows:
compatibility_level = 2: Enables compatibility with Postfix 2.x configurations.
data_directory = /var/lib/postfix. The Postfix cache directory.
myhostname = host.domain.tld: Important: You need to change it to the hostname under your domain name.
mydomain = domain.tld: Important: You need to change it to your domain name.
myorigin = $myhostname and myorigin = $mydomain: Important: parameters that have been commented out. The main function is to complement the sender's mail suffix. $ represents a reference parameter variable.
inet_interfaces = localhost: The interfaces to listen to. This value is usually changed to "all".
inet_protocols = all: Enables IPv4, and IPv6 if an address is found.
mydestination = \$myhostname, localhost.\$mydomain, localhost: Indicates the mail server's destination hosts.
unknown_local_recipient_reject_code = 550: The error code returned when receiving an email to an unknown destination or rejecting an email.
mynetworks =: Sets which networks we should accept emails from.
relay_domains = $mydestination: Sets which domains we should relay emails from.
alias_maps = hash:/etc/aliases: List of our email server's aliases.
alias_database = hash:/etc/aliases: The database is to be used by aliases.
home_mailbox = Maildir/: Important: Out local mailbox location.
debug_peer_level = 2: Level of log records.
setgid_group = postdrop: The Unix group for managing Postfix queues.
Except for the parameter items mentioned or displayed above, some parameters are hidden and can be viewed through the postconf command. The most notable parameters are:
message_size_limit = 10240000. Maximum size for a single message in bytes.
mailbox_size_limit = 1073741824: Maximum size of a user's mailbox.
smtpd_sasl_type = cyrus: The IMAP server software used for SASL authentication. You can use postconf -a to view.
smtpd_sasl_auth_enable = no: Whether to enable SASL authentication.
smtpd_sasl_security_options = noanonymous. Security options for SASL. Anonymous authentication is off by default.
smtpd_sasl_local_domain =. The local domain name.
smtpd_recipient_restrictions. Recipient filtering options. The default value is empty.
If you encounter this kind of error after running systemctl start postfix.service: fatal: open lock file /var/lib/postfix/master.lock: unable to set exclusive lock: Resource temporarily unavailable. Please delete the existing /var/lib/postfix/master.lock file
Testing our Postfix configuration:
Shell(192.168.100.6)>systemctlstartpostfix.service
Shell(192.168.100.6)>postfixcheck
Shell(192.168.100.6)>postfixstatus
# If the command return 1, it is successful.
Shell(192.168.100.6)>postmap-qmail.rockylinux.memysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
Shell(192.168.100.6)>echo$?1
Shell(192.168.100.6)>postmap-qfrank@mail.rockylinux.memysql:/etc/postfix/mysql-virtual-mailbox-maps.cf
Shell(192.168.100.6)>echo$?1
Shell(192.168.100.6)>postmap-qall@mail.rockylinux.memysql:/etc/postfix/mysql-virtual-alias-maps.cf
frank@mail.rockylinux.me,leeo@mail.rockylinux.me
As with Postfix, enter the doveconf command to view the complete configuration.
The file description is as follows:
dovecot.conf is the main Dovecot configuration file.
Load other configuration files via !include conf.d/*.conf.
The numeral prefix of the sub-configuration file facilitates human understanding of its parsing order.
Due to historical reasons, some config files are still separate, typically named *.conf.ext.
In the configuration file, you can use variables divided into Global variables and User variables, starting with %. See here.
10-auth.conf: Authentication configuration.
10-logging.conf. Logging configuration.
10-mail.conf. Configuration of mailbox locations and namespaces. By default, the value of the user's mailbox location is empty, which means that Dovecot automatically looks for the mailbox location. When the user does not have any mail, you must explicitly tell Dovecot the location of all mailboxes.
protocols = imap pop3 lmtp submission: List of protocols to be used.
listen = *, ::: A comma-separated list of IPs or hosts where to listen in for connections. * listens in all IPv4 interfaces, :: listens in all IPv6 interfaces.
disable_plaintext_auth = yes: Whether to turn off plaintext authentication.
auth_mechanisms =: The type of authentication mechanism to be used. Multiple values can be specified and separated by spaces. Values: plain, login, digest-md5, cram-md5, ntlm, rpa, apop, anonymous, gssapi, otp, skey, gss-spnego.
login_trusted_networks=: Which IP networks are allowed to use Dovecot. It can be a single IP address, a network segment, or both. As an example: login_trusted_networks = 10.1.1.0/24 192.168.100.2
mail_location =: For an empty value, Dovecot attempts to find the mailboxes automatically (looking at ~/Maildir, /var/mail/username, ~/mail, and ~/Mail, in that order). However, auto-detection commonly fails for users whose mail directory hasn’t yet been created, so you should explicitly state the full location here, if possible.
mail_privileged_group =: This group is enabled temporarily for privileged operations. This is used only with the INBOX when its initial creation or dotlocking fails. Typically, this is set to mail to access /var/mail.
First, edit the Dovecot configuration in /etc/dovecot/dovecot.conf:
protocols=imappop3lmtp
listen=192.168.100.6
Subsequently, edit the mail storage configuration in /etc/dovecot/conf.d/10-mail.conf:
# %u - username# %n - user part in user@domain, same as %u if there's no domain# %d - domain part in user@domain, empty if there's no domain# %h - home directorymail_location=maildir:/var/mail/vhosts/%d/%n
mail_privileged_group=mail
Don't write the above grammar in one line, such as userdb {driver = sql args = uid=vmail gid=vmail home=/var/mail/vhosts/%d/%n}. Otherwise, it won't work.
Edit the /etc/dovecot/dovecot-sql.conf.ext file with the following contents: