diff options
-rw-r--r-- | email.nix | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -33,6 +33,7 @@ in msmtp.enable = true; passwordCommand = "pass bnet/helium/mail/ben"; }; + "ben@simatime.com" = { realName = "Ben Sima"; address = "ben@simatime.com"; @@ -54,6 +55,39 @@ in passwordCommand = "pass simatime/mail/ben"; msmtp.enable = true; }; + + "bsima@undergroundelephant.com" = { + flavor = "gmail.com"; + realName = "Ben Sima"; + address = "bsima@undergroundelephant.com"; + userName = "bsima@undergroundelephant.com"; + mbsync = { + enable = true; + create = "both"; + expunge = "none"; + }; + notmuch.enable = true; + msmtp.enable = true; + passwordCommand = "pass work/ue/gmail"; + 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; + #}; }; }; }; |