1
0
forked from c3d2/nix-config

matemat: replace ssmtp with msmtp for nixos-22.05

This commit is contained in:
Astro 2022-05-31 18:19:34 +02:00
parent e987e6f595
commit 32a44bfb36

View File

@ -37,15 +37,16 @@
};
};
services.ssmtp = {
programs.msmtp = {
enable = true;
root = "nek0@c3d2.de";
useTLS = true;
useSTARTTLS = true;
hostName = "mail.c3d2.de:587";
domain = "matemat.hq.c3d2.de";
settings = {
hostname = "matemat.hq.c3d2.de";
accounts.default = {
host = "mail.c3d2.de";
port = 587;
tls = true;
tls_starttls = true;
auth = false;
domain = "matemat.hq.c3d2.de";
from = "nek0@c3d2.de";
};
};
}