From 9f242e9ca69c1b53f74332fd4c84786c5bfadaab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tr=C3=A9meur?= Date: Sun, 24 Oct 2021 19:42:41 +0100 Subject: [PATCH] Mail? --- .gitignore | 1 + init.el | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/.gitignore b/.gitignore index 794bc7c..ec774db 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ url/* bookmarks nohup.out \#* +network-security.data diff --git a/init.el b/init.el index dca0cc6..88a6f5d 100644 --- a/init.el +++ b/init.el @@ -343,6 +343,21 @@ (elfeed-make-tagger :before "6 months ago" :remove 'unread)) +;; Email? + +(when (islin) + (add-to-list 'load-path "/usr/share/emacs/site-lisp/mu4e") + (load-file "~/mail.el") + (require 'mu4e) + (setq send-mail-function 'smtpmail-send-it) + (setq org-export-with-author 'nil) + (setq org-export-with-creator 'nil) + (setq org-export-with-date 'nil) + (setq org-export-with-section-numbers 'nil) + (setq org-export-time-stamp-file 'nil) + (setq org-export-with-toc 'nil) + (setq org-html-validation-link 'nil)) + ;; Aesthetics (use-package all-the-icons