Skip to content

Commit

Permalink
email: enable starttls
Browse files Browse the repository at this point in the history
  • Loading branch information
DanNixon committed Oct 6, 2023
1 parent 5071654 commit 373bae4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions home-manager/common/email/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ in {
smtp = {
host = "smtp.fastmail.com";
port = 587;
tls.useStartTls = true;
};
msmtp.enable = true;
};
Expand All @@ -61,6 +62,7 @@ in {
smtp = {
host = "smtp.gmail.com";
port = 587;
tls.useStartTls = true;
};
msmtp.enable = true;
};
Expand All @@ -82,6 +84,7 @@ in {
smtp = {
host = "smtp.office365.com";
port = 587;
tls.useStartTls = true;
};
msmtp.enable = true;
};
Expand All @@ -103,6 +106,7 @@ in {
smtp = {
host = "smtp.office365.com";
port = 587;
tls.useStartTls = true;
};
msmtp.enable = true;
};
Expand Down

0 comments on commit 373bae4

Please sign in to comment.