X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/aaa073e86c8a3a624c460b0d48e251a43b21f23f..b5f783c307d0432f3fe6b82b51733c40faaf3c91:/.mutt/sendmail diff --git a/.mutt/sendmail b/.mutt/sendmail index eff7ef7..9efaea3 100755 --- a/.mutt/sendmail +++ b/.mutt/sendmail @@ -20,12 +20,10 @@ settrap () { trap "$@" 0 1 2 3 4 5 6 7 8 10 11 12 13 14 15; } cleanup () { rm -f "$TMPFILE"; settrap -; } settrap cleanup -echo "$@" >&2 -exit 1 - cat > $TMPFILE args=$(for a in $@; do case "$a" in (*@*) echo "--arg=$a";; esac; done) run-parts --umask=0077 --arg="$TMPFILE" $args -- "$CHECKSDIR" -$SENDMAIL -- "${@#-- }" < "$TMPFILE" +[ "$1" = -- ] && shift +$SENDMAIL "$@" < "$TMPFILE" cleanup