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

remove debugging output
authormartin f. krafft <madduck@madduck.net>
Fri, 19 Nov 2010 08:12:31 +0000 (09:12 +0100)
committermartin f. krafft <madduck@madduck.net>
Fri, 19 Nov 2010 08:12:31 +0000 (09:12 +0100)
.mutt/sendmail-checks.d/prevent-draft

index 00d7011c75fcc1e5df368e560ace331ac5a11952..e78fe643392f7d563666a577a6133f0c1881444e 100755 (executable)
@@ -5,8 +5,7 @@
 # Copyright © 2010 martin f. krafft <madduck@madduck.net>
 # Released under the terms of the Artistic Licence 2.0
 #
-set -eux
-exec 2>&1
+set -eu
 
 draft_headers=$(sed -ne '1,/^$/p' "$1" | egrep -i '^(X-Draft:|Subject:.*[[(]?(Draft|Entwurf)[])]?)' || :)
 
@@ -15,5 +14,3 @@ if [ -n "$draft_headers" ] && ! echo "$draft_headers" | egrep -viq '^X-Draft: (o
   echo >&2 "E: a subject draft tag is present."
   exit 1
 fi
-
-set +x