diff options
-rw-r--r-- | common.nix | 5 | ||||
-rw-r--r-- | email.nix | 11 |
2 files changed, 10 insertions, 6 deletions
@@ -35,11 +35,6 @@ in source = ./tmux; target = ".tmux.conf"; }; - # use this because i override tls settings - msmtprc = { - source = ./msmtprc; - target = ".msmtprc"; - }; }; }; @@ -24,6 +24,10 @@ in smtp = { host = "mail.bsima.me"; port = 587; + tls = { + enable = true; + useStartTls = true; + }; }; gpg = { key = gpgid; @@ -52,6 +56,11 @@ in smtp = { host = "mail.simatime.com"; port = 587; + tls = { + enable = true; + useStartTls = true; + }; + }; mbsync = { enable = true; @@ -123,7 +132,7 @@ in }; msmtp = { - enable = false; + enable = true; }; }; } |