etc/notmuch-config.el

21 lines
774 B
EmacsLisp
Raw Normal View History

2013-04-29 18:40:37 +02:00
(setq mm-text-html-renderer 'w3m
send-mail-function 'sendmail-send-it
message-kill-buffer-on-exit t
notmuch-search-oldest-first nil)
2013-04-29 16:09:02 +02:00
; swap r and R
(define-key notmuch-show-mode-map "r" 'notmuch-show-reply)
(define-key notmuch-show-mode-map "R" 'notmuch-show-reply-sender)
(define-key notmuch-search-mode-map "r" 'notmuch-search-reply-to-thread)
(define-key notmuch-search-mode-map "R" 'notmuch-search-reply-to-thread-sender)
2013-04-29 18:40:37 +02:00
(setq notmuch-fcc-dirs nil)
2013-04-29 16:09:02 +02:00
(add-hook 'message-header-setup-hook 'notmuch-bcc-header-setup)
(defun notmuch-bcc-header-setup ()
(message-add-header "Bcc: gebner@gebner.org"))
2013-04-29 18:40:37 +02:00
(setq mail-specify-envelope-from t
mail-envelope-from 'header
message-sendmail-f-is-evil nil
message-sendmail-envelope-from 'header)