X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/9d69959ed91fe429728fbdff56edf149309e9b4a..7013dfe93a05082153f79eca6c9e5c05b54d9d50:/.mutt/sendmail-checks.d/zzz_add-spool-bcc diff --git a/.mutt/sendmail-checks.d/zzz_add-spool-bcc b/.mutt/sendmail-checks.d/zzz_add-spool-bcc deleted file mode 100755 index 954af30..0000000 --- a/.mutt/sendmail-checks.d/zzz_add-spool-bcc +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -# -# zzz_add-spool-bcc — add a spool mailbox as bcc recipient (runs last) -# -# Write a copy of the temporary file to a spool Maildir. -# -# Copyright © 2010 martin f. krafft -# Released under the terms of the Artistic Licence 2.0 -# -set -eu - -SPOOL_MAILDIR=$HOME/mail/spool -INPUT="$1"; shift -DEST="$SPOOL_MAILDIR/cur/${INPUT##*/}:2,S" - -set -x - -if ! cp -n "$INPUT" "$DEST"; then - echo >&1 "W: failed to spool message file '$1'." - TMPFILE=$(tempfile -p mutt-sendmail -s .msg) - echo >&1 "W: leaving a copy in '$TMPFILE'…" -else - RECIPIENTS=$(for i in "$@"; do echo -n " $i,"; done) - sed -e "1iX-Sendmail-Recipients:${RECIPIENTS%,}" < "$INPUT" > "$DEST" -fi