added context-dependent maildir shortcuts
This commit is contained in:
parent
d3f8b931a2
commit
46a9cb50f5
21
conf.org
21
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-server . "smtp.gmail.com")
|
||||||
(smtpmail-smtp-service . 587)
|
(smtpmail-smtp-service . 587)
|
||||||
(smtpmail-smtp-user . "natedwarshuis@gmail.com")
|
(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
|
,(make-mu4e-context
|
||||||
:name "gatech"
|
:name "gatech"
|
||||||
:match-func
|
: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-server . "smtp.office365.com")
|
||||||
(smtpmail-smtp-service . 587)
|
(smtpmail-smtp-service . 587)
|
||||||
(smtpmail-smtp-user . "ndwarshuis3@gatech.edu")
|
(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
|
,(make-mu4e-context
|
||||||
:name "emory"
|
:name "emory"
|
||||||
:match-func
|
: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-server . "smtp.office365.com")
|
||||||
(smtpmail-smtp-service . 587)
|
(smtpmail-smtp-service . 587)
|
||||||
(smtpmail-smtp-user . "ndwarsh@emory.edu")
|
(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
|
#+END_SRC
|
||||||
* shell
|
* shell
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
Loading…
Reference in New Issue