fixed some smtp setings

This commit is contained in:
Rouven Seifert 2023-01-02 13:18:57 +01:00
parent 7fef0ff098
commit 4d72f8b0b4
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09

View file

@ -26,6 +26,7 @@ in
smtp = { smtp = {
host = "pro1.mail.ovh.net"; host = "pro1.mail.ovh.net";
port = 587; port = 587;
tls.useStartTls = true;
}; };
thunderbird.enable = true; thunderbird.enable = true;
}; };
@ -41,6 +42,7 @@ in
smtp = { smtp = {
host = "msx.tu-dresden.de"; host = "msx.tu-dresden.de";
port = 587; port = 587;
tls.useStartTls = true;
}; };
thunderbird.enable = true; thunderbird.enable = true;
}; };
@ -54,7 +56,7 @@ in
}; };
smtp = { smtp = {
host = "smtp.gmail.com"; host = "smtp.gmail.com";
port = 587; port = 465;
}; };
thunderbird.enable = true; thunderbird.enable = true;
}; };