Add emgauwa to dnscontrol

This commit is contained in:
Tobias Reisinger 2024-12-21 15:02:33 +01:00
parent 7ac1d9d28f
commit 517e75a3a3
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 33 additions and 3 deletions

View file

@ -70,3 +70,13 @@ function verify_dmarc_reports(domains) {
}
return result;
}
function emgauwa_records(emgauwa) {
var result = [];
for (var i = 0; i < emgauwa.length; i++) {
var e = emgauwa[i];
result.push(A(e.subdomain, e.ip));
result.push(acme_challenge(e.subdomain, e.acme_challenge));
}
return result;
}