added orgmu4e to compose/capture emails using org-mode
This commit is contained in:
parent
0b3eeb2a3b
commit
7adfb743d8
14
conf.org
14
conf.org
|
@ -1755,7 +1755,6 @@ set as a text property for further sorting"
|
||||||
(require 'ox-taskjuggler)
|
(require 'ox-taskjuggler)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
* mu4e
|
* mu4e
|
||||||
Work in progress, only for receiving Gmail and work exhange mailboxes
|
|
||||||
** basic
|
** basic
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(require 'mu4e)
|
(require 'mu4e)
|
||||||
|
@ -1777,6 +1776,8 @@ Work in progress, only for receiving Gmail and work exhange mailboxes
|
||||||
|
|
||||||
mu4e-confirm-quit nil
|
mu4e-confirm-quit nil
|
||||||
|
|
||||||
|
mu4e-view-prefer-html t
|
||||||
|
|
||||||
send-mail-function 'smtpmail-send-it
|
send-mail-function 'smtpmail-send-it
|
||||||
message-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/drafts" . ?d)
|
||||||
("/emory/archive" . ?a)))))))
|
("/emory/archive" . ?a)))))))
|
||||||
#+END_SRC
|
#+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
|
* shell
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(defadvice ansi-term (before force-bash)
|
(defadvice ansi-term (before force-bash)
|
||||||
|
|
Loading…
Reference in New Issue