[PATCH 2/2] notmuch.el: Add support for reply-to sender
Sebastian Spaeth
Sebastian at SSpaeth.de
Tue Apr 6 00:12:46 PDT 2010
From: Aneesh Kumar K.V <aneesh.kumar at gmail.com>
Add key binding to do a reply-to sender. This is mapped to 'R'
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar at gmail.com>
Signed-off-by: Sebastian Spaeth <Sebastian at SSpaeth.de>
---
emacs/notmuch-show.el | 21 ++++++++++++++++++++-
1 files changed, 20 insertions(+), 1 deletions(-)
diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
index cc1f905..3d89861 100644
--- a/emacs/notmuch-show.el
+++ b/emacs/notmuch-show.el
@@ -63,7 +63,8 @@
(define-key map "s" 'notmuch-search)
(define-key map "m" 'message-mail)
(define-key map "f" 'notmuch-show-forward-current)
- (define-key map "r" 'notmuch-show-reply)
+ (define-key map "r" 'notmuch-show-reply-all)
+ (define-key map "R" 'notmuch-show-reply)
(define-key map "|" 'notmuch-show-pipe-message)
(define-key map "w" 'notmuch-show-save-attachments)
(define-key map "V" 'notmuch-show-view-raw-message)
@@ -360,10 +361,28 @@ buffer."
mm-handle (> (notmuch-count-attachments mm-handle) 1))))
(message "Done"))
+(defun notmuch-recipient-reply (recipient query-string)
+ (switch-to-buffer (generate-new-buffer "notmuch-draft"))
+ (call-process notmuch-command nil t nil "reply"
+ (concat "--recipient=" recipient) query-string)
+ (message-insert-signature)
+ (goto-char (point-min))
+ (if (re-search-forward "^$" nil t)
+ (progn
+ (insert "--text follows this line--")
+ (forward-line)))
+ (message-mode))
+
(defun notmuch-show-reply ()
"Begin composing a reply to the current message in a new buffer."
(interactive)
(let ((message-id (notmuch-show-get-message-id)))
+ (notmuch-recipient-reply "sender" message-id)))
+
+(defun notmuch-show-reply-all ()
+ "Begin composing a reply to the current message in a new buffer."
+ (interactive)
+ (let ((message-id (notmuch-show-get-message-id)))
(notmuch-reply message-id)))
(defun notmuch-show-forward-current ()
--
1.6.3.3
More information about the notmuch
mailing list