feat: we have to handle the old lists domains
This commit is contained in:
parent
b195208462
commit
4d83ecb584
1 changed files with 16 additions and 0 deletions
|
@ -50,6 +50,10 @@ with lib; let
|
||||||
account = "contact";
|
account = "contact";
|
||||||
members = ["committee"];
|
members = ["committee"];
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
account = "committee";
|
||||||
|
members = ["committee"];
|
||||||
|
}
|
||||||
{
|
{
|
||||||
account = "dbadmin";
|
account = "dbadmin";
|
||||||
members = ["admin"];
|
members = ["admin"];
|
||||||
|
@ -291,6 +295,12 @@ in {
|
||||||
# the number is the priority in teh case of multiple mailservers
|
# the number is the priority in teh case of multiple mailservers
|
||||||
value = "10 mail.${cfg.domain}.";
|
value = "10 mail.${cfg.domain}.";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
record = "@";
|
||||||
|
r_type = "MX";
|
||||||
|
# the number is the priority in teh case of multiple mailservers
|
||||||
|
value = "10 lists.${cfg.domain}.";
|
||||||
|
}
|
||||||
|
|
||||||
# basic one
|
# basic one
|
||||||
{
|
{
|
||||||
|
@ -298,6 +308,11 @@ in {
|
||||||
r_type = "A";
|
r_type = "A";
|
||||||
value = config.services.skynet.host.ip;
|
value = config.services.skynet.host.ip;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
record = "lists";
|
||||||
|
r_type = "A";
|
||||||
|
value = config.services.skynet.host.ip;
|
||||||
|
}
|
||||||
#DNS config for K-9 Mail
|
#DNS config for K-9 Mail
|
||||||
{
|
{
|
||||||
record = "imap";
|
record = "imap";
|
||||||
|
@ -429,6 +444,7 @@ in {
|
||||||
fqdn = "${cfg.sub}.${cfg.domain}";
|
fqdn = "${cfg.sub}.${cfg.domain}";
|
||||||
domains = [
|
domains = [
|
||||||
cfg.domain
|
cfg.domain
|
||||||
|
"lists.skynet.ie"
|
||||||
];
|
];
|
||||||
|
|
||||||
enableManageSieve = true;
|
enableManageSieve = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue