From 1a8aae6fa7be108819fa848df3dc98e1840f5eba Mon Sep 17 00:00:00 2001 From: Thomas Jost Date: Thu, 26 May 2011 10:41:32 +0200 Subject: emacs: Allow the user to choose the "From" address when forwarding a message When pressing C-u f, the user will be prompted for the identity to use. --- emacs/notmuch-mua.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'emacs/notmuch-mua.el') diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index c792732b..7b0aa315 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -172,6 +172,20 @@ the From: address first." (list (cons 'from (notmuch-mua-prompt-for-sender)))))) (notmuch-mua-mail nil nil other-headers))) +(defun notmuch-mua-new-forward-message (&optional prompt-for-sender) + "Invoke the notmuch message forwarding window. + +If PROMPT-FOR-SENDER is non-nil, the user will be prompted for +the From: address first." + (interactive "P") + (if prompt-for-sender + (let* ((sender (notmuch-mua-prompt-for-sender)) + (address-components (mail-extract-address-components sender)) + (user-full-name (car address-components)) + (user-mail-address (cadr address-components))) + (notmuch-mua-forward-message)) + (notmuch-mua-forward-message))) + (defun notmuch-mua-send-and-exit (&optional arg) (interactive "P") (message-send-and-exit arg)) -- cgit v1.2.3