X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-mua.el;h=399e1380df02a8ac2d0caae38179ad675135866f;hb=f2886b80c1addc3d358ba910a4eebf76ba74c00b;hp=935cbd3b6298607e576fd946eec021c03f715e28;hpb=fd6f65f241854cd55e7e4d7c9cb9a71bd9f70cb4;p=notmuch diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index 935cbd3b..399e1380 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -1,4 +1,4 @@ -;; notmuch-mua.el --- emacs style mail-user-agent +;;; notmuch-mua.el --- emacs style mail-user-agent ;; ;; Copyright © David Edmondson ;; @@ -19,6 +19,8 @@ ;; ;; Authors: David Edmondson +;;; Code: + (require 'message) (require 'mm-view) (require 'format-spec) @@ -248,7 +250,9 @@ mutiple parts get a header." ;; Don't omit long parts. (notmuch-show-max-text-part-size 0) ;; Insert headers for parts as appropriate for replying. - (notmuch-show-insert-header-p-function notmuch-mua-reply-insert-header-p-function)) + (notmuch-show-insert-header-p-function notmuch-mua-reply-insert-header-p-function) + ;; Don't indent multipart sub-parts. + (notmuch-show-indent-multipart nil)) (notmuch-show-insert-body original (plist-get original :body) 0) (buffer-substring-no-properties (point-min) (point-max))))) @@ -334,7 +338,10 @@ modified. This function is notmuch addaptation of ;; We need to convert any string input, eg from rmail-start-mail. (dolist (h other-headers other-headers) (if (stringp (car h)) (setcar h (intern (capitalize (car h)))))))) - (args (list yank-action send-actions))) + (args (list yank-action send-actions)) + ;; Cause `message-setup-1' to do things relevant for mail, + ;; such as observe `message-default-mail-headers'. + (message-this-is-mail t)) ;; message-setup-1 in Emacs 23 does not accept return-action ;; argument. Pass it only if it is supplied by the caller. This ;; will never be the case when we're called by `compose-mail' in @@ -513,3 +520,5 @@ simply runs the corresponding `message-mode' hook functions." ;; (provide 'notmuch-mua) + +;;; notmuch-mua.el ends here