From: martin f. krafft Date: Mon, 25 Oct 2010 07:15:59 +0000 (+0200) Subject: check for draft tag in subject line X-Git-Url: https://git.madduck.net/etc/mutt.git/commitdiff_plain/85ab0ddad9abef42ea865be8bb0371cac0d80609 check for draft tag in subject line --- diff --git a/.mutt/sendmail-checks.d/prevent-draft b/.mutt/sendmail-checks.d/prevent-draft index 4c94803..9924260 100755 --- a/.mutt/sendmail-checks.d/prevent-draft +++ b/.mutt/sendmail-checks.d/prevent-draft @@ -7,7 +7,8 @@ # set -eu -if grep -iq '^X-Draft:' $1; then - echo >&2 "E: will not send this message while the X-Draft header is present" +if egrep -iq '^(X-Draft:|Subject:.*[[(]?(Draft|Entwurf)[])]?)' $1; 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 fi