Rated 5 out of 5 stars

Sehr hilfreich, um Signatur und Anhänge abtrennen zu können!

Ein Problem: Funktioniert nicht bei Headern wie diesem:
Content-Type: multipart/signed;
boundary="Apple-Mail=_969543C1-645B-4F2D-0000-30E4DA25C65E";
protocol="application/pkcs7-signature"; micalg=sha-256

Lösungsvorschlag:
Wenn man in disablesignature.js die drei Konstanten ändert wie im folgenden, werden auch solche Headereinträge bearbeitet:
const oldContentTypeValue = /multipart\/signed;\s*(.*)\s*protocol="application\/(x-)?pkcs7-signature";/;
const oldContentType = /Content-Type: multipart\/signed;\s*(.*)\s*protocol="application\/(x-)?pkcs7-signature";s*(micalg=sha-256)?/;
const newContentType = "Content-Type: multipart/mixed; $1 (Signatur ausgeschaltet)";

Rated 5 out of 5 stars

I waited so long for this after "Header Tools Lite" gone unsupported. Just right click on a signed message and "disable signature". Separating large attachments is now possible again. Works like a charm. Thanks!