This user was instructed to create an SRV record for Microsoft Exchange autodiscover. Instead of using the dedicated SRV record type with the correct fields (Service, Protocol, Port, Host, Priority, Weight), they pasted the literal field labels and values as a single flat TXT record. Exchange autodiscover has never worked for this domain.
2. Pasted full BIND zone file DMARC syntax into TXT value field
The TXT record contains the full BIND zone file line: `_dmarc.108properties.co.uk. IN TXT 'v=DMARC1...'`. Instead of entering just the DMARC policy value (`v=DMARC1; p=none`), the admin pasted the entire zone file entry including hostname, class, record type, and outer quotes. Mail servers receiving this record will not recognise it as a valid DMARC policy.
_dmarc.108properties.co.uk. IN TXT 'v=DMARC1; p=none; rua=mailto:dmarc@108properties.co.uk'
3. Tried to command the internet via DNS TXT record
The admin tried to manually instruct the internet to create an ALIAS record by typing `027ltd.co.uk ALIAS apex-loadbalancer.netlify.com` into the DNS TXT value field. DNS doesn't work like a command line. The internet was unpersuaded.
4. Rich Text Format (RTF) document pasted into DNS
The admin drafted their DKIM key or verification token in Microsoft Word, then copy-pasted the raw Rich Text Format (`{rtf1ansiansicpg1252...}`) directly into the DNS TXT field. Word's invisible formatting codes are now globally distributed via DNS.
5. Pasted literal BIND zone file syntax into the value
The admin copy-pasted raw BIND zone file syntax (`aracs.co.uk IN TXT ...`) directly into the TXT record *value* field instead of just the value itself. The record now recursively references itself and is technically malformed.
aracs.co.uk IN TXT EA0462oIcJKrVXXYlqZMAHgQvhKvAPMcLYayukaP/PkQDJeBV+TEAQ7svu+mp3zcZvqL33GwpfoFwRgZs8jFrQ==
Similar to aracs.co.uk, the full BIND zone file line was pasted verbatim: `_dnsauth.australiaoverland.co.uk. IN TXT "2023..."`. DNS resolvers will happily return this mangled text, which breaks downstream validation.
_dnsauth.australiaoverland.co.uk. IN TXT "2023abc-xyz-verification-token"
7. Full SSL Certificate Signing Request (CSR) in DNS
A full Certificate Signing Request (CSR) was pasted into the DNS TXT field โ chunked across multiple records due to the 255-char limit. The CSR itself is public information (it contains only the public key), but it is a spectacular example of using DNS as a general-purpose text storage system.
8. Google Analytics tracking script pasted into DNS
A full Universal Analytics tracking snippet โ complete with the `(function(i,s,o,g,r,a,m)` IIFE โ was pasted into a DNS TXT record. Google Analytics has never and will never read a DNS TXT record. The script silently does nothing.
9. Attempted a CNAME apex redirect using a TXT record
The TXT record reads `apex=redirect5.promotemyplace.com` โ an attempt to configure a CNAME/ALIAS apex redirect using a raw text string. DNS resolvers do not read TXT records for routing instructions. This redirect has never worked. The website owner presumably wondered why their domain never pointed anywhere.