Add msmtp
This commit is contained in:
parent
00db3ff974
commit
9d8b5c5dc2
1 changed files with 20 additions and 0 deletions
|
@ -18,6 +18,26 @@ in
|
|||
"shared/ssh.nix"
|
||||
];
|
||||
|
||||
programs = {
|
||||
msmtp = {
|
||||
enable = true;
|
||||
defaults = {
|
||||
tls = true;
|
||||
};
|
||||
accounts = {
|
||||
default = {
|
||||
auth = true;
|
||||
host = "TODO: e.g. smtp.strato.de";
|
||||
port = 587;
|
||||
tls_starttls = true;
|
||||
from = "TODO: email";
|
||||
user = "TODO: email";
|
||||
password = "TODO";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
security.acme = {
|
||||
defaults.email = "michael.huebner@ptspaper.de";
|
||||
acceptTerms = true;
|
||||
|
|
Loading…
Reference in a new issue