Skip to content

Commit

Permalink
DOCS: Added M365_BUILDER() to menu and code tricks (#2371)
Browse files Browse the repository at this point in the history
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
  • Loading branch information
cafferata and tlimoncelli committed May 18, 2023
1 parent f82bcfe commit 42b3795
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions documentation/SUMMARY.md
Expand Up @@ -82,6 +82,7 @@
* [LOC_BUILDER_DMM_STR](functions/record/LOC_BUILDER_DMM_STR.md)
* [LOC_BUILDER_DMS_STR](functions/record/LOC_BUILDER_DMS_STR.md)
* [LOC_BUILDER_STR](functions/record/LOC_BUILDER_STR.md)
* [M365_BUILDER](functions/record/M365_BUILDER.md)
* [SPF_BUILDER](functions/record/SPF_BUILDER.md)
* [TTL](functions/record/TTL.md)
* Service Provider specific
Expand Down
3 changes: 2 additions & 1 deletion documentation/code-tricks.md
Expand Up @@ -6,6 +6,7 @@ Solution: Use a "builder" to construct it for you.

* [CAA Builder](functions/record/CAA_BUILDER.md)
* [DMARC Builder](functions/record/DMARC_BUILDER.md)
* [M365_BUILDER](functions/record/M365_BUILDER.md)
* [SPF Optimizer](functions/record/SPF_BUILDER.md)

# Repeat records in many domains (macros)
Expand Down Expand Up @@ -68,7 +69,7 @@ function PARKED_R53(name) {
A("@", "10.2.3.4"),
CNAME("www", "@"),
SPF_NONE, //deters spammers from using the domain in From: lines.
END);
END);
}

PARKED_R53("example1.tld");
Expand Down

0 comments on commit 42b3795

Please sign in to comment.