|
|
@ -150,22 +150,22 @@ else if (strlen($part_id)) {
|
|
|
|
|
|
|
|
|
|
|
|
// accept text/plain with any extension
|
|
|
|
// accept text/plain with any extension
|
|
|
|
if ($real_mimetype == 'text/plain' && $real_mimetype == $mimetype) {
|
|
|
|
if ($real_mimetype == 'text/plain' && $real_mimetype == $mimetype) {
|
|
|
|
$file_extension = 'txt';
|
|
|
|
$valid_extension = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ignore differences in text/* mimetypes. Filetype detection isn't very reliable here
|
|
|
|
// ignore differences in text/* mimetypes. Filetype detection isn't very reliable here
|
|
|
|
if ($real_ctype_primary == 'text' && strpos($mimetype, $real_ctype_primary) === 0) {
|
|
|
|
else if ($real_ctype_primary == 'text' && strpos($mimetype, $real_ctype_primary) === 0) {
|
|
|
|
$real_mimetype = $mimetype;
|
|
|
|
$real_mimetype = $mimetype;
|
|
|
|
|
|
|
|
$valid_extension = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// get valid file extensions
|
|
|
|
|
|
|
|
$extensions = rcube_mime::get_mime_extensions($real_mimetype);
|
|
|
|
|
|
|
|
$valid_extension = (!$file_extension || in_array($file_extension, (array)$extensions));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ignore filename extension if mimeclass matches (#1489029)
|
|
|
|
// ignore filename extension if mimeclass matches (#1489029)
|
|
|
|
if (!empty($_REQUEST['_mimeclass']) && $real_ctype_primary == $_REQUEST['_mimeclass']) {
|
|
|
|
else if (!empty($_REQUEST['_mimeclass']) && $real_ctype_primary == $_REQUEST['_mimeclass']) {
|
|
|
|
$valid_extension = true;
|
|
|
|
$valid_extension = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
// get valid file extensions
|
|
|
|
|
|
|
|
$extensions = rcube_mime::get_mime_extensions($real_mimetype);
|
|
|
|
|
|
|
|
$valid_extension = (!$file_extension || in_array($file_extension, (array)$extensions));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// fix mimetype for images wrongly declared as octet-stream
|
|
|
|
// fix mimetype for images wrongly declared as octet-stream
|
|
|
|
if ($mimetype == 'application/octet-stream' && strpos($real_mimetype, 'image/') === 0 && $valid_extension) {
|
|
|
|
if ($mimetype == 'application/octet-stream' && strpos($real_mimetype, 'image/') === 0 && $valid_extension) {
|
|
|
|