]> 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:

add a hook to (try to) spool every outgoing mail
authormartin f. krafft <madduck@madduck.net>
Fri, 23 Jul 2010 15:20:51 +0000 (17:20 +0200)
committermartin f. krafft <madduck@madduck.net>
Fri, 23 Jul 2010 15:20:51 +0000 (17:20 +0200)
.mutt/sendmail-checks.d/zzz_add-spool-bcc [new file with mode: 0755]

diff --git a/.mutt/sendmail-checks.d/zzz_add-spool-bcc b/.mutt/sendmail-checks.d/zzz_add-spool-bcc
new file mode 100755 (executable)
index 0000000..12b1568
--- /dev/null
@@ -0,0 +1,19 @@
+#!/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 <madduck@madduck.net>
+# Released under the terms of the Artistic Licence 2.0
+#
+set -eu
+
+SPOOL_MAILDIR=$HOME/mail/spool
+
+if ! cp -n "$1" "$SPOOL_MAILDIR/cur/${1##*/}:2,S"; then
+  echo >&1 "W: failed to spool message file '$1'."
+  TMPFILE=$(tempfile -p mutt-sendmail -s .msg)
+  cat "$1" > "$TMPFILE"
+  echo >&1 "W: leaving a copy in '$TMPFILE'…"
+fi