]> git.madduck.net Git - etc/mutt.git/blobdiff - .config/mutt/sendmail

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:

move mutt config to ~/.config
[etc/mutt.git] / .config / mutt / sendmail
similarity index 75%
rename from .mutt/sendmail
rename to .config/mutt/sendmail
index 80fd4a1bba72f221c5fd2a7050297ec5ac00306f..a6ff7c9b6ef1cf27c99b217fbad19d8813616396 100755 (executable)
@@ -3,16 +3,16 @@
 # 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.
+# executable scripts in ~/.config/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
+# Copyright © 2010 martin f. krafft <madduck@madduck.net> Released under the
+# terms of the Artistic Licence 2.0
 #
 set -eux
 
-CHECKSDIR="$HOME/.mutt/sendmail-checks.d"
+CHECKSDIR="$HOME/.config/mutt/sendmail-checks.d"
 SENDMAIL="/usr/sbin/sendmail -oem -oi"
 
 TMPFILE=$(mktemp --tmpdir mutt-sendmail.XXXXXXXXXX.msg)