X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/dff60e00f801f70b89b10651d4a0fcdcdbed31d5..afcbe3084d440952177900bd00a37cd27150d77e:/.mutt/sendmail-checks.d/prevent-draft diff --git a/.mutt/sendmail-checks.d/prevent-draft b/.mutt/sendmail-checks.d/prevent-draft index 4c94803..4cfe23f 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 sed -ne '1,/^$/' "$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 fi