Thomas Bruederli
2012-12-22 090c49d4a3343d346677ed1687ae28697f5b1c6e
Treat image/pjpeg as image/jpeg
1 files modified
6 ■■■■ changed files
program/steps/mail/func.inc 6 ●●●● patch | view | raw | blame | history
program/steps/mail/func.inc
@@ -1290,7 +1290,7 @@
  // Content-Type: image/*...
  if (preg_match($mime_regex, $part->mimetype)) {
    return $part->mimetype;
    return rcmail_fix_mimetype($part->mimetype);
  }
  // Many clients use application/octet-stream, we'll detect mimetype
@@ -1900,6 +1900,10 @@
  if (preg_match('/^application\/pdf.+/', $name))
    $name = 'application/pdf';
  // treat image/pjpeg as image/jpeg
  else if (preg_match('/^image\/p?jpe?g$/', $name))
    $name = 'image/jpeg';
  return $name;
}