1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

CHORE: go generate

This commit is contained in:
Tom Limoncelli
2023-03-20 09:29:19 -04:00
parent 1b5f9ef802
commit 80bf577afb
2 changed files with 36 additions and 34 deletions

View File

@ -1324,12 +1324,14 @@ declare function R53_ALIAS(name: string, target: string, zone_idModifier: Domain
* );
* ```
*
* The email address should be specified like a normal RFC822/RFC5322 address (user@hostname.com). It will be converted into the required format (e.g. BIND format: `user.hostname.com`) by the provider as required. This has the benefit of being more human-readable plus DNSControl can properly handle escaping and other issues.
* If you accidentally include an `@` in the email field DNSControl will quietly
* change it to a `.`. This way you can specify a human-readable email address
* when you are making it easier for spammers how to find you.
*
* ## Notes
* * Previously, the accepted format for the SOA mailbox field was `hostmaster.example.org`. This has been changed to `hostmaster@example.org`
* * The serial number is managed automatically. It isn't even a field in `SOA()`.
* * Most providers automatically generate SOA records. They will ignore any `SOA()` statements.
* * The mbox field should not be set to a real email address unless you love spam and hate your privacy.
*
* There is more info about `SOA` in the documentation for the [BIND provider](../../providers/bind.md).
*