X-Git-Url: https://git.madduck.net/etc/mailfilter.git/blobdiff_plain/eddb5ee317cb1d447bc5d9fa74de6287f2838a59..bd97a33d177754d4260fd21c5f6751a486eb3eed:/bin/resubmit diff --git a/bin/resubmit b/bin/resubmit index 01990b2..2e4896d 100755 --- a/bin/resubmit +++ b/bin/resubmit @@ -2,9 +2,16 @@ set -eu PROCMAIL=$HOME/.etc/mailfilter/procmail/procmailrc +FORMAIL="/usr/bin/formail -I'X-Resubmitted: $(date -R)'" -if [ -z "$1" ]; then - cat | exec $PROCMAIL +if [ -z "${1:-}" ]; then + $FORMAIL | exec $PROCMAIL else - exec $PROCMAIL < "$1" + if [ ! -f "$1" ]; then + echo "E: no such file: $1" >&2 + exit 1 + fi + eval $FORMAIL < "$1" | $PROCMAIL && rm -f "$1" fi + +exit 0