Skip to content

Commit

Permalink
DOCS: Fix M365_BUILDER examples (#3009)
Browse files Browse the repository at this point in the history
Co-authored-by: Tom Limoncelli <[email protected]>
  • Loading branch information
nikolamilekic and tlimoncelli authored Jul 18, 2024
1 parent d160b82 commit 1d348de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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,
Expand Down

0 comments on commit 1d348de

Please sign in to comment.