MichaelG1967

About me

Developer Information
Name MichaelG1967
User since Sept. 25, 2024
Number of add-ons developed 0 add-ons
Average rating of developer's add-ons Not yet rated

My Reviews

Disable Signature

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)";