CentOS Stream 9
Sponsored Link

Mail Server : Set Virtual Domain2022/03/18

 
Configure for Virtual Domain to send an email with another domain name different from original domain.
This example is for the case you use OS user accounts.
If you use virtual mailbox accounts, refer to here.
For example, present domain name ⇒ srv.world
new domain name ⇒ virtual.host
a User [cent] has an email address [cent@mail.srv.world],
a User [redhat] has an email address [cent@mail.virtual.host],
the user [redhat] uses the same name for before [@] with [cent].
[1] Configure Postfix.
[root@mail ~]#
vi /etc/postfix/main.cf
# add to the end of the file

virtual_alias_domains = virtual.host
virtual_alias_maps = hash:/etc/postfix/virtual
[root@mail ~]#
vi /etc/postfix/virtual
# add to the head of the file

cent@mail.virtual.host redhat
[root@mail ~]#
postmap /etc/postfix/virtual

[root@mail ~]#
systemctl reload postfix

[2] Set new account to Email client and verify possible to send emails.
Matched Content