X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/6e0fbe0a20e45362d6cff2d9d4d7ff3516f98f5e..3866f1ef8a9c02ba429809b0e4eb7aea4647b074:/.mutt/sendmail diff --git a/.mutt/sendmail b/.mutt/sendmail index 9efaea3..132a417 100755 --- a/.mutt/sendmail +++ b/.mutt/sendmail @@ -20,10 +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" -[ "$1" = -- ] && shift -$SENDMAIL "$@" < "$TMPFILE" +formail -I X-Bcc-Spool: < "$TMPFILE" | eval $SENDMAIL "$sendmail_args" -- "$recipients" cleanup