simple nixos mail server
This commit is contained in:
parent
6bee6cb48c
commit
b4298d5f3e
7 changed files with 169 additions and 10 deletions
|
|
@ -63,6 +63,25 @@ in
|
|||
thunderbird.enable = true;
|
||||
gpg.key = "AB79213B044674AE";
|
||||
};
|
||||
|
||||
"SimpleMailserver" = rec {
|
||||
address = "hd@hdohmen.de";
|
||||
realName = "Henri Dohmen";
|
||||
smtp = {
|
||||
tls.enable = true;
|
||||
host = "roam.hdohmen.de";
|
||||
port = 465;
|
||||
};
|
||||
imap = {
|
||||
tls.enable = true;
|
||||
host = "roam.hdohmen.de";
|
||||
port = 993;
|
||||
};
|
||||
userName = address;
|
||||
thunderbird.enable = true;
|
||||
gpg.key = "AB79213B044674AE";
|
||||
};
|
||||
|
||||
};
|
||||
accounts.calendar.accounts = {
|
||||
"Privat" = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue