]> 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 and enable sendmail wrapper script
authormartin f. krafft <madduck@madduck.net>
Mon, 14 Jun 2010 10:01:48 +0000 (12:01 +0200)
committermartin f. krafft <madduck@madduck.net>
Mon, 14 Jun 2010 10:27:42 +0000 (12:27 +0200)
.mutt/hooks
.mutt/muttrc
.mutt/sendmail [new file with mode: 0755]

index 1adb09028b186c19f34008812fb2d3c6b0b521b3..4613eda1cd29c6f94cde247bf51acfaed05e676c 100644 (file)
@@ -1,6 +1,5 @@
 save-hook . =store
 
-send2-hook . 'reset sendmail'
 send2-hook '~C notyet' "set sendmail='~/.mutt/error 1 I will not send this draft yet!'"
 # this next works in combination with $use_domain to ensure I don't send
 # without expanding aliases:
index d7be8d53857d80c20b8c5f23b1d67c38816e2c02..910fb6d060d7b828b87dbe3a5136f1ce674a05b5 100644 (file)
@@ -3684,8 +3684,8 @@ set save_history=100
 # arguments as recipient addresses.
 # 
 #set sendmail="/bin/true"
-#set sendmail="~/.mutt/sendmail"
-set sendmail="/usr/sbin/sendmail -oem -oi"
+set sendmail="~/.mutt/sendmail"
+#set sendmail="/usr/sbin/sendmail -oem -oi"
 # 
 # set sendmail_wait=0
 #
diff --git a/.mutt/sendmail b/.mutt/sendmail
new file mode 100755 (executable)
index 0000000..44e91dc
--- /dev/null
@@ -0,0 +1,27 @@
+#!/bin/sh
+#
+# mutt/sendmail – sendmail wrapper to enforce some checks on outgoing mails
+#
+# The script basically just creates a temporary file and then invokes any
+# executable scripts in ~/.mutt/sendmail-checks.d in run-parts style. They
+# receive the filename of a temporary file holding the message to be sent as
+# $1, followed by all recipients as determined by mutt.
+#
+# Copyright © 2010 martin f. krafft <madduck@madduck.net>
+# Released under the terms of the Artistic Licence 2.0
+#
+set -eu
+
+CHECKSDIR="$HOME/.mutt/sendmail-checks.d"
+SENDMAIL="/usr/sbin/sendmail -oem -oi"
+
+TMPFILE=$(tempfile -p mutt-sendmail -s .msg)
+cleanup () { rm -f "$TMPFILE"; trap - 0 1 2 3 4 5 6 7 8 10 11 12 13 14 15; }
+trap cleanup 0 1 2 3 4 5 6 7 8 10 11 12 13 14 15
+
+cat > $TMPFILE
+args=$(for a in $@; do [ $a = -- ] || echo "--arg=$a"; done)
+run-parts --umask=0077 --arg="$TMPFILE" $args -- "$CHECKSDIR"
+$SENDMAIL -- "$@" < "$TMPFILE"
+
+cleanup