mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2026-02-20 10:33:09 +08:00
M365_BUILDER: Support second level domains, fix domainGUID Generation (#3165)
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
parent
ee65e4610a
commit
635eb314d2
1 changed files with 1 additions and 1 deletions
|
|
@ -1850,7 +1850,7 @@ function M365_BUILDER(name, value) {
|
|||
);
|
||||
}
|
||||
|
||||
value.domainGUID = name.replace('.', '-');
|
||||
value.domainGUID = name.replace(/\./g, '-');
|
||||
}
|
||||
|
||||
if (value.dkim && !value.initialDomain) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue