msmtp fixes

This commit is contained in:
Charlotte Van Petegem 2022-04-24 17:14:15 +02:00
parent 7521543dcd
commit 05c290ef1c
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -7,11 +7,11 @@
auth = true;
from = "webmaster@vanpetegem.me";
host = "mail.vanpetegem.me";
passwordeval = ''cat ${config.age.secrets."passwords/services/ssmtp-pass".path}'';
passwordeval = ''${pkgs.coreutils}/bin/cat ${config.age.secrets."passwords/services/ssmtp-pass".path}'';
port = 465;
tls = true;
tls_starttls = false;
tls_trust_file = "${pkgs.cacert}/etc/ssl/certs/ca-certificates.crt";
tls_trust_file = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
user = "webmaster@vanpetegem.me";
};
setSendmail = true;