summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--email.nix31
1 files changed, 15 insertions, 16 deletions
diff --git a/email.nix b/email.nix
index 9efaa00..b8d9e3f 100644
--- a/email.nix
+++ b/email.nix
@@ -72,22 +72,21 @@ in
smtp.tls.useStartTls = true;
};
- # Auth is blocked by Google policies
- #"ben.sima@heroprojects.io" = {
- # flavor = "gmail.com";
- # realName = "Ben Sima";
- # address = "ben.sima@heroprojects.io";
- # userName = "ben.sima@heroprojects.io";
- # mbsync = {
- # enable = true;
- # create = "both";
- # expunge = "none";
- # };
- # notmuch.enable = true;
- # msmtp.enable = true;
- # passwordCommand = "pass work/hero/gmail";
- # smtp.tls.useStartTls = true;
- #};
+ "ben.sima@heroprojects.io" = {
+ flavor = "gmail.com";
+ realName = "Ben Sima";
+ address = "ben.sima@heroprojects.io";
+ userName = "ben.sima@heroprojects.io";
+ mbsync = {
+ enable = true;
+ create = "both";
+ expunge = "none";
+ };
+ notmuch.enable = true;
+ msmtp.enable = true;
+ passwordCommand = "pass work/hero/gmail";
+ smtp.tls.useStartTls = true;
+ };
};
};
};