fix(mail): switch SMTP provider

web.de SMTP credentials were often disabled.
This commit is contained in:
Felix Schröter 2024-01-14 17:54:54 +01:00
parent 1e6d3df52c
commit f61b49d9d5
Signed by: felschr
GPG key ID: 671E39E6744C807D
3 changed files with 18 additions and 17 deletions
services

View file

@ -14,15 +14,14 @@
tls_starttls = true;
auth = true;
};
accounts.default = rec {
accounts.default = {
tls = true;
tls_starttls = true;
host = "smtp.web.de";
host = "in-v3.mailjet.com";
port = 587;
user = "felschr@web.de";
user = "8f445e9664e3668e7c859bfcf189e71e";
passwordeval = "cat ${config.age.secrets.smtp.path}";
# from = "%U@server.felschr.com";
from = user;
from = "admin@felschr.com";
};
};