* Mail: equal sign followed by numbers is mangled in plain-text mails (e.g. =22 becomes a ")

If we detected qprint encoding in the plain-text body of a composed mail (not an arrived mail!), we wrongly decoded it.
This commit is contained in:
ralf 2023-09-08 09:34:34 +02:00
parent 044b57a813
commit 549e023998

View File

@ -2496,11 +2496,6 @@ class mail_compose
$_mailObject->addHeader('Subject', $_formData['subject']);
// this should never happen since we come from the edit dialog
if (Mail::detect_qp($_formData['body'])) {
$_formData['body'] = preg_replace('/=\r\n/', '', $_formData['body']);
$_formData['body'] = quoted_printable_decode($_formData['body']);
}
$disableRuler = false;
$signature = $_identity['ident_signature'];
$sigAlreadyThere = $this->mailPreferences['insertSignatureAtTopOfMessage']!='no_belowaftersend'?1:0;