X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/dff60e00f801f70b89b10651d4a0fcdcdbed31d5..5148df23c78682765b8a3e7df355bb736564fc22:/.mutt/sendmail-checks.d/prevent-draft diff --git a/.mutt/sendmail-checks.d/prevent-draft b/.mutt/sendmail-checks.d/prevent-draft index 4c94803..ed30026 100755 --- a/.mutt/sendmail-checks.d/prevent-draft +++ b/.mutt/sendmail-checks.d/prevent-draft @@ -7,7 +7,10 @@ # set -eu -if grep -iq '^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:|Subject:.*[[(]?(Draft|Entwurf)[])]?|(To|Cc):.*[-_]DRAFT)' || :) + +if [ -n "$draft_headers" ] && ! echo "$draft_headers" | egrep -viq '^X-Draft: (ok|no)'; then + 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