]> git.cworth.org Git - notmuch-wiki/commitdiff
bouncing messages
authorJani Nikula <jani@nikula.org>
Sat, 29 Sep 2012 18:53:37 +0000 (21:53 +0300)
committerJani Nikula <jani@nikula.org>
Sat, 29 Sep 2012 18:53:37 +0000 (21:53 +0300)
emacstips.mdwn

index 1decf6363bd776fd31364ea4202acf56e0549dd7..311de7101ad08597809bfe30e82ca8fe5b263f2a 100644 (file)
@@ -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)))