From 7adfb743d887e4ff4ae7d19b00edab83481c7f34 Mon Sep 17 00:00:00 2001 From: petrucci4prez Date: Sat, 8 Sep 2018 20:30:45 -0400 Subject: [PATCH] added orgmu4e to compose/capture emails using org-mode --- conf.org | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/conf.org b/conf.org index e950c83..a70d6b0 100644 --- a/conf.org +++ b/conf.org @@ -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)