summaryrefslogtreecommitdiffhomepage
path: root/email.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-11-21 22:35:44 +0000
committerjao <jao@gnu.org>2021-11-21 22:35:44 +0000
commitd5bf2e15ac30c643008a1ae1d05b847d1ff63941 (patch)
tree87cf428f20ec8898a73087827873270d9fc3f4c1 /email.org
parent9f1abc66775bee8b1ac552e22fad22090d630235 (diff)
downloadelibs-d5bf2e15ac30c643008a1ae1d05b847d1ff63941.tar.gz
elibs-d5bf2e15ac30c643008a1ae1d05b847d1ff63941.tar.bz2
today's nits
Diffstat (limited to 'email.org')
-rw-r--r--email.org12
1 files changed, 7 insertions, 5 deletions
diff --git a/email.org b/email.org
index 9d3a278..d4bb066 100644
--- a/email.org
+++ b/email.org
@@ -1,6 +1,13 @@
#+property: header-args:emacs-lisp :lexical t :tangle yes :comments yes :results silent :shebang ";; -*- lexical-binding: t; -*-" :tangle-mode (identity #o644)
#+title: email handling (message mode, bbdb, gnus, notmuch)
+* personal emails
+ #+begin_src emacs-lisp
+ (defvar jao-mails)
+ (defvar jao-extra-mails)
+ (defvar jao-mails-regexp)
+ (setq jao-mails-regexp (regexp-opt jao-mails))
+ #+end_src
* gnus
*** directories
#+begin_src emacs-lisp
@@ -32,11 +39,6 @@
* message mode
*** Customization
#+begin_src emacs-lisp
- (defvar jao-mails)
- (defvar jao-extra-mails)
- (defvar jao-mails-regexp)
- (setq jao-mails-regexp (regexp-opt jao-mails))
-
(setq message-send-mail-function 'message-send-mail-with-sendmail
message-sendmail-envelope-from 'header
message-sendmail-f-is-evil nil)