From 9807b0df9914cdc5ccd26988877a084aed24f1d8 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 2 Jul 2022 17:53:10 -0700 Subject: feat(home/mail): enable smtp to send emails Change-Id: Ia651a1821c44ec45a2dae033e44c91c9eab8459e Reviewed-on: https://cl.fcuny.net/c/world/+/607 Tested-by: CI Reviewed-by: Franck Cuny --- home/mail/accounts/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/mail/accounts/default.nix b/home/mail/accounts/default.nix index c827850..1b7cd68 100644 --- a/home/mail/accounts/default.nix +++ b/home/mail/accounts/default.nix @@ -13,18 +13,21 @@ in aliases = [ "franck.cuny@gmail.com" ]; passwordCommand = "pass email/imap.fastmail.com"; imap.host = "imap.fastmail.com"; + smtp.host = "smtp.fastmail.com"; mbsync = { enable = true; create = "maildir"; expunge = "both"; extraConfig.channel.CopyArrivalDate = "yes"; }; + msmtp.enable = true; notmuch.enable = true; }; }; }; programs.mbsync.enable = true; + programs.msmtp.enable = true; programs.afew = { enable = true; -- cgit 1.4.1