From 1d7e4d314dcdaa1aa5353f6d520ba448b5808f8f Mon Sep 17 00:00:00 2001 From: alecpl Date: Sat, 24 Oct 2009 17:04:22 +0000 Subject: - allow '+' character in mimetype name (#1486239) --- program/include/rcube_message.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/include') diff --git a/program/include/rcube_message.php b/program/include/rcube_message.php index 7c2457e55..1a22427d0 100644 --- a/program/include/rcube_message.php +++ b/program/include/rcube_message.php @@ -402,7 +402,7 @@ class rcube_message $this->inline_parts[] = $mail_part; } // is a regular attachment - else if (preg_match('!^[a-z]+/[a-z0-9-.]+$!i', $mail_part->mimetype)) { + else if (preg_match('!^[a-z]+/[a-z0-9-.+]+$!i', $mail_part->mimetype)) { if (!$mail_part->filename) $mail_part->filename = 'Part '.$mail_part->mime_id; $this->attachments[] = $mail_part; -- cgit v1.2.3