mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-04 23:24:20 +00:00
feat: Add selector._domainkey project record
- https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/issues/265
This commit is contained in:
parent
d841f9db44
commit
39f92f769b
|
@ -121,6 +121,13 @@ List<DnsRecord> getProjectDnsRecords(
|
|||
ttl: 18000,
|
||||
);
|
||||
|
||||
final DnsRecord txt3 = DnsRecord(
|
||||
type: 'TXT',
|
||||
name: 'selector._domainkey',
|
||||
content: 'v=DKIM1; k=rsa; p=none',
|
||||
ttl: 18000,
|
||||
);
|
||||
|
||||
return <DnsRecord>[
|
||||
domainA,
|
||||
apiA,
|
||||
|
@ -132,6 +139,7 @@ List<DnsRecord> getProjectDnsRecords(
|
|||
mx,
|
||||
txt1,
|
||||
txt2,
|
||||
txt3,
|
||||
vpn,
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue