X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/dff60e00f801f70b89b10651d4a0fcdcdbed31d5..46f71f0d0278a7e6fe3d9fb630577ad266d4af71:/.mutt/sendmail-checks.d/check-attachments?ds=sidebyside diff --git a/.mutt/sendmail-checks.d/check-attachments b/.mutt/sendmail-checks.d/check-attachments index 81ff561..e8e5b7c 100755 --- a/.mutt/sendmail-checks.d/check-attachments +++ b/.mutt/sendmail-checks.d/check-attachments @@ -21,7 +21,7 @@ RE_FRENCH='attach(e|er|(é|=E9|=C3=A9)e?s?|ement|ant)' OVERRIDE_HEADER=X-No-Attach if ! grep -qi "^${OVERRIDE_HEADER}:" "$1" \ - && egrep -ziq "($RE_ENGLISH|$RE_GERMAN|$RE_FRENCH)" "$1"; then + && grep -v '^> ' "$1" | egrep -ziq "($RE_ENGLISH|$RE_GERMAN|$RE_FRENCH)" "$1"; then nr_attach=$(sed -rne 's/^Content-Type:[[:space:]]+//p' "$1" | egrep -cv '^(multipart/|application/pgp-signature)')