fix(mail): switch SMTP provider
web.de SMTP credentials were often disabled.
This commit is contained in:
parent
1e6d3df52c
commit
f61b49d9d5
3 changed files with 18 additions and 17 deletions
services
|
@ -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";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue