diff --git a/src/lib/posts/dns-records-for-email-servers-explained-with-practical-examples.md b/src/lib/posts/dns-records-for-email-servers-explained-with-practical-examples.md index ef6140b..58f4498 100644 --- a/src/lib/posts/dns-records-for-email-servers-explained-with-practical-examples.md +++ b/src/lib/posts/dns-records-for-email-servers-explained-with-practical-examples.md @@ -88,7 +88,7 @@ _dmarc.example.hexname.com. TXT "v=DMARC1; p=reject; rua=mailto:dmarc-report ## Filling your DNS records -If using a DNS service like HexName.com, you can register a subdomain (like `example.hexname.com`), create an `mx` record (such as `mx.example.hexname.com`), and add the above A, AAAA, MX, and TXT records. Ensure each record is entered precisely. +If using a DNS service like HexName.com, you can register a subdomain (like `example.hexname.com`), create an MX record (such as `mx.example.hexname.com`), and add the above A, AAAA, MX, and TXT records. Ensure each record is entered precisely. A complete (minimal) set for secure mail delivery: - A/AAAA records pointing to your mailserver's IP diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 4d3e3bb..1888131 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -162,7 +162,7 @@
Update your A/AAAA records periodically with a script so that they always point to your IP
+Update your DNS A records periodically with a script so that they always point to your IP
https://hexname.com/api/v1/ddns/ipv4/[TOKEN]/[NEW_IP]
+ To update your A record using the token, make an HTTP PUT request to the following URL: https://hexname.com/api/v1/ddns/ipv4/[TOKEN]/[NEW_IP]
- Here is a basic Bash script you can set to periodically update your IP:
+ Here is a basic Bash script you can use to periodically update your IP:
ipv4 in the script with ipv6 in both places.
+