From 46a9cb50f5afd065b95a1ba4ac464aa10aefa43f Mon Sep 17 00:00:00 2001 From: petrucci4prez Date: Thu, 6 Sep 2018 22:20:26 -0400 Subject: [PATCH] added context-dependent maildir shortcuts --- conf.org | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/conf.org b/conf.org index 3fd25cd..875dd49 100644 --- a/conf.org +++ b/conf.org @@ -1800,7 +1800,12 @@ I have current have three contexts, personal and two work accounts. The first is (smtpmail-smtp-server . "smtp.gmail.com") (smtpmail-smtp-service . 587) (smtpmail-smtp-user . "natedwarshuis@gmail.com") - (user-mail-address . "natedwarshuis@gmail.com"))) + (user-mail-address . "natedwarshuis@gmail.com") + (mu4e-maildir-shortcuts . + (("/gmail/inbox" . ?i) + ("/gmail/sent" . ?s) + ("/gmail/trash" . ?s) + ("/gmail/archive" . ?a))))) ,(make-mu4e-context :name "gatech" :match-func @@ -1816,7 +1821,12 @@ I have current have three contexts, personal and two work accounts. The first is (smtpmail-smtp-server . "smtp.office365.com") (smtpmail-smtp-service . 587) (smtpmail-smtp-user . "ndwarshuis3@gatech.edu") - (user-mail-address . "ndwarshuis3@gatech.edu"))) + (user-mail-address . "ndwarshuis3@gatech.edu") + (mu4e-maildir-shortcuts . + (("/gatech/inbox" . ?i) + ("/gatech/sent" . ?s) + ("/gatech/trash" . ?s) + ("/gatech/archive" . ?a))))) ,(make-mu4e-context :name "emory" :match-func @@ -1832,7 +1842,12 @@ I have current have three contexts, personal and two work accounts. The first is (smtpmail-smtp-server . "smtp.office365.com") (smtpmail-smtp-service . 587) (smtpmail-smtp-user . "ndwarsh@emory.edu") - (user-mail-address . "ndwarsh@emory.edu"))))) + (user-mail-address . "ndwarsh@emory.edu") + (mu4e-maildir-shortcuts . + (("/emory/inbox" . ?i) + ("/emory/sent" . ?s) + ("/emory/trash" . ?s) + ("/emory/archive" . ?a))))))) #+END_SRC * shell #+begin_src emacs-lisp