fix typo's

This commit is contained in:
Mechiel Lukkien 2025-06-09 10:00:53 +02:00
parent f1259ee80e
commit f5b8c64b84
2 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ func DomainRecords(domConf config.Domain, domain dns.Domain, hasDNSSEC bool, cer
records = append(records, records = append(records,
"; Remote servers can use MTA-STS to verify our TLS certificate with the", "; Remote servers can use MTA-STS to verify our TLS certificate with the",
"; WebPKI pool of CA's (certificate authorities) when delivering over SMTP with", "; WebPKI pool of CA's (certificate authorities) when delivering over SMTP with",
"; STARTTLSTLS.", "; STARTTLS.",
fmt.Sprintf(`mta-sts.%s. CNAME %s.`, d, h), fmt.Sprintf(`mta-sts.%s. CNAME %s.`, d, h),
fmt.Sprintf(`_mta-sts.%s. TXT "v=STSv1; id=%s"`, d, sts.PolicyID), fmt.Sprintf(`_mta-sts.%s. TXT "v=STSv1; id=%s"`, d, sts.PolicyID),
"", "",

View File

@ -10,7 +10,7 @@
// looked up with an DNS "A" lookup of a name similar to an IPv4 address, but with // looked up with an DNS "A" lookup of a name similar to an IPv4 address, but with
// 4-bit hexadecimal dot-separated characters, in reverse. // 4-bit hexadecimal dot-separated characters, in reverse.
// //
// The health of a DNSBL "zone" can be check through a lookup of 127.0.0.1 // The health of a DNSBL "zone" can be checked through a lookup of 127.0.0.1
// (must not be present) and 127.0.0.2 (must be present). // (must not be present) and 127.0.0.2 (must be present).
package dnsbl package dnsbl