X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/829a405011c59fded10d42ca3b71af7b23cde116..7013dfe93a05082153f79eca6c9e5c05b54d9d50:/.mutt/edit-header?ds=sidebyside diff --git a/.mutt/edit-header b/.mutt/edit-header deleted file mode 100755 index c87717a..0000000 --- a/.mutt/edit-header +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -# -# edit-header - helper script to append/replace/remove headers with mutt -# -# Based on an idea by David Champion -# -# Copyright © 2008 martin f. krafft -# Released under the terms of the Artistic Licence 2.0 -# -set -eu - -if [ ! -x "$(command -v formail)" ]; then - echo E: formail not installed. >&2 - exit 1 -fi - -header="${1:-}" -if [ -z "$header" ]; then - echo "E: no header specified" >&2 - exit 1 -fi - -get_header_contents() -{ - local contents - printf "Enter ${1:-header} contents: " >/dev/tty - read contents &2 - exit 1 - ;; - -esac - -echo "set my_editor=\"\$editor\'" -echo "set editor=\"$editor\"" -#echo "push " -echo "push " -# we need to push this so it happens after the editing -echo "push :set editor=\"\$my_editor\""