summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2020-04-16 21:31:55 -0700
committerBen Sima <ben@bsima.me>2020-04-16 21:31:55 -0700
commit5e16899ecf052a3d6fb91018cf0ac2e78419f687 (patch)
tree2a9cdc5cd25c4bd7c322b60346433ad7e2bf3d2c /lib
parent998df334235a234d75b4545ddfd4e021218faa16 (diff)
Redo email stuff on linux
This will only work on my server... i'll have to refactor it if I want to use it on my laptop too :(
Diffstat (limited to 'lib')
-rw-r--r--lib/email.nix60
1 files changed, 15 insertions, 45 deletions
diff --git a/lib/email.nix b/lib/email.nix
index e692d39..17ec44d 100644
--- a/lib/email.nix
+++ b/lib/email.nix
@@ -14,15 +14,12 @@ in
email = {
maildirBasePath = "${homedir}/Mail";
accounts = {
- "ben@bsima.me" = {
+ "ben@simatime.com" = {
primary = true;
realName = "Ben Sima";
address = "ben@bsima.me";
userName = "ben@simatime.com";
alot.sendMailCommand = "${homedir}/bin/sendmail";
- folders = {
- inbox = "INBOX";
- };
imap = {
host = "simatime.com";
port = 993;
@@ -46,51 +43,24 @@ in
expunge = "none";
};
notmuch.enable = true;
- msmtp.enable = true;
- passwordCommand = "cat ~/keybase/private/bsima/ben@bsima.me";
- };
-
- "ben@simatime.com" = {
- realName = "Ben Sima";
- address = "ben@simatime.com";
- userName = "ben@simatime.com";
- imap = {
- host = "simatime.com";
- port = 993;
- };
- smtp = {
- host = "simatime.com";
- port = 587;
- tls = {
- enable = true;
- useStartTls = true;
- };
-
- };
- mbsync = {
- enable = true;
- create = "both";
- expunge = "none";
- };
- notmuch.enable = true;
passwordCommand = "cat ~/keybase/private/bsima/ben@simatime.com";
msmtp.enable = 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";
- #};
+ # "ben@heroprojects.io" = {
+ # flavor = "gmail.com";
+ # realName = "Ben Sima";
+ # address = "ben@heroprojects.io";
+ # userName = "ben@heroprojects.io";
+ # mbsync = {
+ # enable = true;
+ # create = "both";
+ # expunge = "none";
+ # };
+ # notmuch.enable = true;
+ # msmtp.enable = true;
+ # passwordCommand = "cat ~/keybase/private/bsima/ben@heroprojects.io";
+ # };
};
};
};