]> git.madduck.net Git - etc/mutt.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

extract additional rcpts from x-bcc-spool header
authormartin f. krafft <madduck@madduck.net>
Fri, 24 Aug 2012 10:44:03 +0000 (12:44 +0200)
committermartin f. krafft <madduck@madduck.net>
Fri, 24 Aug 2012 10:44:03 +0000 (12:44 +0200)
.mutt/sendmail

index 2d70cea29a030cba82339f756c010f9f22a7941c..48b5e6355b73cb388e64bb9617910ee41f8ca807 100755 (executable)
@@ -31,8 +31,9 @@ for i in "$@"; do
 done
 
 cat > $TMPFILE
+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"
-eval $SENDMAIL "$sendmail_args" -- "$recipients" < "$TMPFILE"
+formail -I X-Spool-Bcc: < "$TMPFILE" | eval $SENDMAIL "$sendmail_args" -- "$recipients"
 
 cleanup