]> git.notmuchmail.org Git - notmuch/commitdiff
notmuch.el: Add a simple command to pipe a message to a process.
authorCarl Worth <cworth@cworth.org>
Thu, 5 Nov 2009 00:54:09 +0000 (16:54 -0800)
committerCarl Worth <cworth@cworth.org>
Thu, 5 Nov 2009 00:54:09 +0000 (16:54 -0800)
With the obvious keybinding.

notmuch.el

index 50e573dde01a070c9232fc7af56847daf2d487f5..cd5c896449a38c1c264b10096a829f796235c35c 100644 (file)
@@ -44,6 +44,7 @@
     (define-key map "-" 'notmuch-show-remove-tag)
     (define-key map (kbd "DEL") 'notmuch-show-rewind)
     (define-key map " " 'notmuch-show-advance-marking-read-and-archiving)
+    (define-key map "|" 'notmuch-show-pipe-message)
     map)
   "Keymap for \"notmuch show\" buffers.")
 (fset 'notmuch-show-mode-map notmuch-show-mode-map)
@@ -187,6 +188,15 @@ buffer."
   (interactive)
   (view-file (notmuch-show-get-filename)))
 
+(defun notmuch-show-pipe-message (command)
+  "Pipe the contents of the current message to the given command.
+
+The given command will be executed with the raw contents of the
+current email message as stdin. Anything printed by the command
+to stdout or stderr will appear in the *Messages* buffer."
+  (interactive "sPipe message to command: ")
+  (apply 'start-process-shell-command "notmuch-pipe-command" "*notmuch-pipe*" (split-string (concat command " < " (notmuch-show-get-filename)))))
+
 (defun notmuch-show-move-to-current-message-summary-line ()
   "Move to the beginning of the one-line summary of the current message.