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

CHORE: update deps (#2071)

This commit is contained in:
Tom Limoncelli
2023-02-13 13:42:52 -05:00
committed by GitHub
parent e3dc604247
commit d1dcba45ed
3 changed files with 67 additions and 198 deletions

View File

@ -1032,12 +1032,14 @@ declare function R53_ALIAS(name: string, target: string, zone_idModifier: Domain
*
* ```javascript
* D("example.com", REG_THIRDPARTY, DnsProvider("DNS_BIND"),
* SOA("@", "ns3.example.org.", "hostmaster.example.org.", 3600, 600, 604800, 1440),
* SOA("@", "ns3.example.org.", "hostmaster@example.org", 3600, 600, 604800, 1440),
* );
* ```
*
* ## Notes
* 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.
*
* ## 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.
*