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

make sure sed prints, else this is all broken
authormartin f. krafft <madduck@madduck.net>
Fri, 5 Nov 2010 08:03:58 +0000 (09:03 +0100)
committermartin f. krafft <madduck@madduck.net>
Fri, 5 Nov 2010 08:03:58 +0000 (09:03 +0100)
.mutt/sendmail-checks.d/prevent-draft

index 4cfe23fefd80b8df3046bee8df9d24650b9f8c5b..b0417bb382bb520b10c4605cfca48db0aee2fa19 100755 (executable)
@@ -7,7 +7,7 @@
 #
 set -eu
 
-if sed -ne '1,/^$/' "$1" | egrep -iq '^(X-Draft:|Subject:.*[[(]?(Draft|Entwurf)[])]?)'; then
+if sed -ne '1,/^$/p' "$1" | egrep -iq '^(X-Draft:|Subject:.*[[(]?(Draft|Entwurf)[])]?)'; then
   echo >&2 "E: will not send this message while the X-Draft header or"
   echo >&2 "E: a subject draft tag is present."
   exit 1