mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 09:12:47 +08:00
DOCS: Fix M365_BUILDER examples (#3009)
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
parent
d160b828ff
commit
1d348de91c
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ It doesn't set up SPF or DMARC. See [`SPF_BUILDER`](SPF_BUILDER.md) and [`DMARC_
|
|||
{% code title="dnsconfig.js" %}
|
||||
```javascript
|
||||
D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
|
||||
M365_BUILDER({
|
||||
M365_BUILDER("example.com", {
|
||||
initialDomain: "example.onmicrosoft.com",
|
||||
}),
|
||||
END);
|
||||
|
@ -47,7 +47,7 @@ This sets up `MX` records, Autodiscover, and DKIM.
|
|||
{% code title="dnsconfig.js" %}
|
||||
```javascript
|
||||
D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
|
||||
M365_BUILDER({
|
||||
M365_BUILDER("example.com", {
|
||||
label: "test",
|
||||
mx: false,
|
||||
autodiscover: false,
|
||||
|
|
Loading…
Reference in a new issue