Add phpvms service

This commit is contained in:
Tobias Reisinger 2026-02-05 18:58:22 +01:00
parent bf5fdebfa2
commit 11c339ce92
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
9 changed files with 257 additions and 3 deletions

View file

@ -69,8 +69,8 @@ function acme_challenge(subd, target) {
function verify_dmarc_reports(domains) {
var result = [];
for (d in domains) {
result.push(TXT(d + "._report._dmarc", "v=DMARC1"));
for (i in domains) {
result.push(TXT(domains[i] + "._report._dmarc", "v=DMARC1"));
}
return result;
}