summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJani Nikula <jani@nikula.org>2012-09-29 21:53:37 +0300
committerJani Nikula <jani@nikula.org>2012-09-29 21:53:37 +0300
commit5654fb7a450477fbbe562d55dca2de2c94ab6a41 (patch)
tree811e1faa84bfe7225cae7b544712ad65588e1e98
parent113ce934d29d55a62cce65fe739471a402e207ed (diff)
bouncing messages
-rw-r--r--emacstips.mdwn12
1 files changed, 12 insertions, 0 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn
index 1decf63..311de71 100644
--- a/emacstips.mdwn
+++ b/emacstips.mdwn
@@ -539,3 +539,15 @@ more information (some of these have "extensive documentation"):
The last two do the same thing.
See also the **Usage:** section in `gnus-alias.el`.
+
+## Resending (or bouncing) messages
+
+Add the following to your `.emacs` to be able to resend the current message in
+show mode.
+
+ (define-key notmuch-show-mode-map "b"
+ (lambda (&optional address)
+ "Bounce the current message."
+ (interactive "sBounce To: ")
+ (notmuch-show-view-raw-message)
+ (message-resend address)))