content/blog/mail_server_alpine_postfix_dovecot_tutorial.md: use dns as highlighting language as listed here: https://gohugo.io/content-management/syntax-highlighting/

This commit is contained in:
revsuine 2024-11-20 03:00:32 +00:00
parent ec99dbbcdc
commit 4114ba8893
Signed by: revsuine
GPG key ID: 3F257B68F5BC9339

View file

@ -141,7 +141,7 @@ choice.
An MX record denotes that your domain is used to send and receive email, and tells other MTAs the domain name of your An MX record denotes that your domain is used to send and receive email, and tells other MTAs the domain name of your
mail server. We will use `mail.domain.com` for your MX record. For instance, my MX record looks like: mail server. We will use `mail.domain.com` for your MX record. For instance, my MX record looks like:
```bindzone ```dns
revsuine.xyz. 14400 IN MX 0 mail.revsuine.xyz revsuine.xyz. 14400 IN MX 0 mail.revsuine.xyz
``` ```
@ -153,19 +153,19 @@ same as the IP address of `domain.com`, or an A record if the IP address is not
I use a CNAME record because the IP addresses of `mail.revsuine.xyz` and `revsuine.xyz` are the same, so my record is: I use a CNAME record because the IP addresses of `mail.revsuine.xyz` and `revsuine.xyz` are the same, so my record is:
```bindzone ```dns
mail.revsuine.xyz. 14400 IN CNAME revsuine.xyz mail.revsuine.xyz. 14400 IN CNAME revsuine.xyz
``` ```
If you use an A record, your record may look something like If you use an A record, your record may look something like
```bindzone ```dns
mail.domain.com. 14400 IN A ip.address.here mail.domain.com. 14400 IN A ip.address.here
``` ```
If you use IPv6, you should also add an AAAA record, e.g.: If you use IPv6, you should also add an AAAA record, e.g.:
```bindzone ```dns
mail.domain.com. 14400 IN AAAA ip:address:here:: mail.domain.com. 14400 IN AAAA ip:address:here::
``` ```