From bd1021ad0a3618180431e17a8dd6b69c72df63dc Mon Sep 17 00:00:00 2001 From: Bojan Bogojevic <20166636+Bojan023@users.noreply.github.com> Date: Wed, 23 Dec 2020 17:37:53 +0100 Subject: [PATCH] Order DNS records alphabetically and fix capital m original record with capital M: _carddavs._tcp IN SRV 0 1 443 Mail.example.org. --- docs/prerequisite-dns.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/prerequisite-dns.md b/docs/prerequisite-dns.md index 596c84d51..1de6f22b7 100644 --- a/docs/prerequisite-dns.md +++ b/docs/prerequisite-dns.md @@ -58,18 +58,21 @@ _dmarc IN TXT "v=DMARC1; p=reject; rua=mailto:mailauth-reports@ ``` # Name Type Priority Weight Port Value +_autodiscover._tcp IN SRV 0 1 443 mail.example.org. +_caldavs._tcp IN SRV 0 1 443 mail.example.org. +_caldavs._tcp IN TXT "path=/SOGo/dav/" +_carddavs._tcp IN SRV 0 1 443 Mail.example.org. +_carddavs._tcp IN TXT "path=/SOGo/dav/" _imap._tcp IN SRV 0 1 143 mail.example.org. _imaps._tcp IN SRV 0 1 993 mail.example.org. _pop3._tcp IN SRV 0 1 110 mail.example.org. _pop3s._tcp IN SRV 0 1 995 mail.example.org. -_submission._tcp IN SRV 0 1 587 mail.example.org. -_smtps._tcp IN SRV 0 1 465 mail.example.org. _sieve._tcp IN SRV 0 1 4190 mail.example.org. -_autodiscover._tcp IN SRV 0 1 443 mail.example.org. -_carddavs._tcp IN SRV 0 1 443 Mail.example.org. -_carddavs._tcp IN TXT "path=/SOGo/dav/" -_caldavs._tcp IN SRV 0 1 443 mail.example.org. -_caldavs._tcp IN TXT "path=/SOGo/dav/" +_smtps._tcp IN SRV 0 1 465 mail.example.org. +_submission._tcp IN SRV 0 1 587 mail.example.org. + + + ``` ## Testing