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

DOCS: Added M365_BUILDER() to menu and code tricks (#2371)

Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
Jeffrey Cafferata
2023-05-18 21:27:44 +02:00
committed by GitHub
parent f82bcfe1e2
commit 42b3795cfd
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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");