]> git.madduck.net Git - etc/mutt.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

generalise bgrunning via FIFO
authormartin f. krafft <madduck@madduck.net>
Tue, 23 Oct 2018 01:14:26 +0000 (14:14 +1300)
committermartin f. krafft <madduck@madduck.net>
Tue, 23 Oct 2018 21:00:39 +0000 (10:00 +1300)
.mutt/bgrun
.mutt/bgrun-fifo [moved from .mutt/browserrun with 100% similarity]
.mutt/mailcap.backgrounding

index 937542d22d2c5896e2a4ad491c3808ab8d642fcb..6e1663036baed216a6015286f61d3903f98ee80a 100755 (executable)
@@ -37,13 +37,14 @@ launch_viewer() {
   run-mailcap --action=view "$1":"$2" > output.stdout 2> output.stderr
 }
 
+MIMETYPE="$1"
+TEMPFILE=$(tempfile -d . -p mutt -s $(guess_extension "$MIMETYPE"))
+
 case "$SELF" in
   (bgrun)
     # make a copy of the file, then launch a shell process in the background
     # to divert to run-mailcap, after which the temporary directory gets
     # cleaned up.
-    MIMETYPE="$1"
-    TEMPFILE=$(tempfile -d . -p mutt -s $(guess_extension "$MIMETYPE"))
     cat > "$TEMPFILE"
     (
     launch_viewer "$MIMETYPE" "$TEMPFILE"
@@ -55,19 +56,19 @@ case "$SELF" in
     ) &
     trap - 1 2 3 4 5 6 7 8 10 11 12 13 14 15
     ;;
-  (browserrun)
-    # hack to stay around until the browser has read the file: make a fifo and
+  (bgrun-fifo)
+    # hack to stay around until the viewer has read the file: make a fifo and
     # wait for the cat process to finish writing to it, which means that it
     # must have been consumed on the other end.
-    mkfifo mutt.html
-    TEMPFILE=$(tempfile -d . -p mutt -s .html)
     cat > "$TEMPFILE"
-    cat "$TEMPFILE" > mutt.html &
-    # For some reason, we do have to write a tempfile and cannot seem tu
+    FIFO="${TEMPFILE%/*}/fifo-${TEMPFILE##*/}"
+    mkfifo "$FIFO"
+    cat "$TEMPFILE" > "$FIFO" &
+    # For some reason, we do have to write a tempfile and cannot seem to
     # redirect stdin directly to the fifo, i.e. this does not work instead of
     # the previous three lines:
-    ## cat > mutt.html &
-    launch_viewer text/html ${PWD}/mutt.html
+    ## cat > "$FIFO" &
+    launch_viewer "$MIMETYPE" "${FIFO}"
     wait
     cleanup
     ;;
similarity index 100%
rename from .mutt/browserrun
rename to .mutt/bgrun-fifo
index bfb4554b4cb3b559e7c3341bdcb7a574ebf6408a..3e12f1816d77bc55df21605fc458473b37689ec6 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Mutt mailcap for backgrounding 
 
-text/html; ~/.mutt/browserrun; description=Open file in browser via FIFO
+text/html; ~/.mutt/bgrun-fifo %t; description=Open file in browser via FIFO
 application/*; ~/.mutt/bgrun %t; description=Backgrounded run of run-mailcap
 image/*; ~/.mutt/bgrun %t; description=Backgrounded run of run-mailcap
 #multipart/related; ~/.mutt/viewmailattachments; description=Backgrounded loading of HTML message with related parts