From 42b3795cfdee9f1ba986d2a1637111d646d6c9bb Mon Sep 17 00:00:00 2001 From: Jeffrey Cafferata Date: Thu, 18 May 2023 21:27:44 +0200 Subject: [PATCH] DOCS: Added `M365_BUILDER()` to menu and code tricks (#2371) Co-authored-by: Tom Limoncelli --- documentation/SUMMARY.md | 1 + documentation/code-tricks.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/documentation/SUMMARY.md b/documentation/SUMMARY.md index 5a31fa337..8b6ab9867 100644 --- a/documentation/SUMMARY.md +++ b/documentation/SUMMARY.md @@ -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 diff --git a/documentation/code-tricks.md b/documentation/code-tricks.md index 5f24cc7f7..abf7eaab4 100644 --- a/documentation/code-tricks.md +++ b/documentation/code-tricks.md @@ -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) @@ -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");