feat: Add selector._domainkey project record

- #265
pull/424/head
NaiJi ✨ 2024-01-15 14:31:44 +04:00 committed by Inex Code
parent d841f9db44
commit 39f92f769b
1 changed files with 8 additions and 0 deletions

View File

@ -121,6 +121,13 @@ List<DnsRecord> getProjectDnsRecords(
ttl: 18000, ttl: 18000,
); );
final DnsRecord txt3 = DnsRecord(
type: 'TXT',
name: 'selector._domainkey',
content: 'v=DKIM1; k=rsa; p=none',
ttl: 18000,
);
return <DnsRecord>[ return <DnsRecord>[
domainA, domainA,
apiA, apiA,
@ -132,6 +139,7 @@ List<DnsRecord> getProjectDnsRecords(
mx, mx,
txt1, txt1,
txt2, txt2,
txt3,
vpn, vpn,
]; ];
} }