diff options
author | Vincent Ambo <mail@tazj.in> | 2018-06-12T07·12+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-06-12T07·12+0200 |
commit | ebc1dd1a18857ff7d63f09236552ddaf43885cb2 (patch) | |
tree | 4e7ef88a1660de02053459b550949c3b6ab28807 /init/mail-setup.el | |
parent | 7781a059b3d06a9bc5bb86473686103ebfad6d5f (diff) |
chore(mail): Switch to citing messages without signature
Diffstat (limited to 'init/mail-setup.el')
-rw-r--r-- | init/mail-setup.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init/mail-setup.el b/init/mail-setup.el index 98ad17fed805..b7fffa360856 100644 --- a/init/mail-setup.el +++ b/init/mail-setup.el @@ -29,12 +29,13 @@ (setq notmuch-always-prompt-for-sender t) (setq notmuch-mua-user-agent-function (lambda () (format "Emacs %s; notmuch.el %s" emacs-version notmuch-emacs-version))) +(setq mail-host-address (system-name)) +(setq notmuch-mua-cite-function #'message-cite-original-without-signature) ;; Ensure sender is correctly passed to msmtp (setq mail-specify-envelope-from t message-sendmail-envelope-from 'header mail-envelope-from 'header) -(setq mail-host-address (system-name)) ;; Store sent mail in the correct folder per account (setq notmuch-maildir-use-notmuch-insert nil) |