pmcf 1.74.0 → 1.74.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/dns.mjs +1 -1
package/package.json
CHANGED
package/src/dns.mjs
CHANGED
|
@@ -213,7 +213,7 @@ async function generateZoneDefs(dns, targetDir) {
|
|
|
213
213
|
|
|
214
214
|
for (const mail of dns.owner.findServices({ type: "smtp" })) {
|
|
215
215
|
records.add(
|
|
216
|
-
createRecord("@", "MX", mail.priority, fullName(mail.
|
|
216
|
+
createRecord("@", "MX", mail.priority, fullName(mail.domainName))
|
|
217
217
|
);
|
|
218
218
|
}
|
|
219
219
|
|