added orgmu4e to compose/capture emails using org-mode

This commit is contained in:
petrucci4prez 2018-09-08 20:30:45 -04:00
parent 0b3eeb2a3b
commit 7adfb743d8
1 changed files with 13 additions and 1 deletions

View File

@ -1755,7 +1755,6 @@ set as a text property for further sorting"
(require 'ox-taskjuggler)
#+END_SRC
* mu4e
Work in progress, only for receiving Gmail and work exhange mailboxes
** basic
#+BEGIN_SRC emacs-lisp
(require 'mu4e)
@ -1776,6 +1775,8 @@ Work in progress, only for receiving Gmail and work exhange mailboxes
mu4e-change-filenames-when-moving t
mu4e-confirm-quit nil
mu4e-view-prefer-html t
send-mail-function 'smtpmail-send-it
message-send-mail-function 'smtpmail-send-it
@ -1859,6 +1860,17 @@ I have current have three contexts, personal and two work accounts. The first is
("/emory/drafts" . ?d)
("/emory/archive" . ?a)))))))
#+END_SRC
** org-mu4e
#+BEGIN_SRC emacs-lisp
(use-package org-mu4e
:after (org mu4e)
:config
(setq
;; for using mu4e in org-capture templates
org-mu4e-link-query-in-headers-mode nil
;; for composing rich-text emails using org mode
org-mu4e-convert-to-html t))
#+END_SRC
* shell
#+begin_src emacs-lisp
(defadvice ansi-term (before force-bash)