]> git.madduck.net Git - etc/mutt.git/blobdiff - .mutt/sendmail-checks.d/prevent-draft

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:

exclude subject from prevent-draft check
[etc/mutt.git] / .mutt / sendmail-checks.d / prevent-draft
index 5c83ceb339749ee60cc9bf4b6ff1a1a970f4bb6e..314dfd386c22e4fd97f11b2ff740309882fddf7d 100755 (executable)
@@ -7,7 +7,11 @@
 #
 set -eu
 
-if grep -q '^X-Draft:' $1; then
-  echo >&2 "E: will not send this message while the X-Draft header is present"
+draft_headers=$(sed -ne '1,/^$/p' "$1" | egrep -i '^(X-Draft:|(To|Cc):.*[-_]DRAFT)' || :)
+
+if [ -n "$draft_headers" ]; then
+  echo "$draft_headers" | egrep -iq '^X-Draft: (ok|no)' && exit 0
+  echo >&2 "E: will not send this message while the X-Draft header or"
+  echo >&2 "E: a subject or receipient draft tag is present."
   exit 1
 fi