X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/9a429ea7cf3cab8d57192d41d1ba94fa1365267d..f5827d4cc554364b8144af3fae9b1901f20e8319:/.mutt/sendmail diff --git a/.mutt/sendmail b/.mutt/sendmail index ff3a4c1..132a417 100755 --- a/.mutt/sendmail +++ b/.mutt/sendmail @@ -20,9 +20,20 @@ settrap () { trap "$@" 0 1 2 3 4 5 6 7 8 10 11 12 13 14 15; } cleanup () { rm -f "$TMPFILE"; settrap -; } settrap cleanup +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) +recipients="$recipients $(formail -czx X-Bcc-Spool: < "$TMPFILE" | tr -d ',')" +args=$(for i in $recipients; do echo "--arg=$i"; done) run-parts --umask=0077 --arg="$TMPFILE" $args -- "$CHECKSDIR" -$SENDMAIL -- "$@" < "$TMPFILE" +formail -I X-Bcc-Spool: < "$TMPFILE" | eval $SENDMAIL "$sendmail_args" -- "$recipients" cleanup