Merge branch '#33_email_k9_dns' into 'main'
Added dns config for k-9 mail See merge request compsoc1/skynet/nixos!22
This commit is contained in:
commit
0472019016
1 changed files with 16 additions and 0 deletions
|
@ -120,6 +120,22 @@ in {
|
|||
r_type = "A";
|
||||
value = cfg.host.ip;
|
||||
}
|
||||
#DNS config for K-9 Mail
|
||||
{
|
||||
record = "imap";
|
||||
r_type = "CNAME";
|
||||
value = "mail";
|
||||
}
|
||||
{
|
||||
record = "pop3";
|
||||
r_type = "CNAME";
|
||||
value = "mail";
|
||||
}
|
||||
{
|
||||
record = "smtp";
|
||||
r_type = "CNAME";
|
||||
value = "mail";
|
||||
}
|
||||
|
||||
# TXT records, all tehse are inside escaped strings to allow using ""
|
||||
# SPF record
|
||||
|
|
Loading…
Reference in a new issue