X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/aaa073e86c8a3a624c460b0d48e251a43b21f23f..3031cacf7cdae16c8ac58ca399675b22ab3ea0d9:/.mutt/sendmail diff --git a/.mutt/sendmail b/.mutt/sendmail index eff7ef7..881935d 100755 --- a/.mutt/sendmail +++ b/.mutt/sendmail @@ -20,12 +20,28 @@ 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 +argtype=s +recipients= sendmail_args= +for i in "$@"; do + case "$argtype/$i" in + (s/--) argtype=r;; + (s/*) sendmail_args="${sendmail_args} $i";; + (r/*) recipients="${recipients} $i";; + esac +done 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" + +remove_headers= +if ! formail -czx "Resent-" < "$TMPFILE" | grep -q .; then + # only do this for original mails, not bounces + recipients="$recipients $(formail -czx "X-Bcc" < "$TMPFILE" | tr -d ',')" + remove_headers="$remove_headers -IX-Bcc" +fi +args=$(for i in $recipients; do echo "--arg=$i"; done) +run-parts --exit-on-error --umask=0077 --arg="$TMPFILE" $args -- "$CHECKSDIR" + +formail $remove_headers < "$TMPFILE" \ + | eval $SENDMAIL "$sendmail_args" -- "$recipients" cleanup