From fe3a1d60a53920029932287629ee0afd4df729aa Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 9 Mar 2012 07:43:19 +0000 Subject: - Fix encoding of attachment with comma in name (#1488389) --- program/lib/Mail/mime.php | 4 ++-- program/lib/Mail/mimePart.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'program/lib/Mail') diff --git a/program/lib/Mail/mime.php b/program/lib/Mail/mime.php index c5dd305fa..cc72f5b29 100644 --- a/program/lib/Mail/mime.php +++ b/program/lib/Mail/mime.php @@ -1142,8 +1142,8 @@ class Mail_mime ? $this->_build_params['eol'] : "\r\n"; // add parameters - $token_regexp = '#([^\x21,\x23-\x27,\x2A,\x2B,\x2D' - . ',\x2E,\x30-\x39,\x41-\x5A,\x5E-\x7E])#'; + $token_regexp = '#([^\x21\x23-\x27\x2A\x2B\x2D' + . '\x2E\x30-\x39\x41-\x5A\x5E-\x7E])#'; if (is_array($params)) { foreach ($params as $name => $value) { if ($name == 'boundary') { diff --git a/program/lib/Mail/mimePart.php b/program/lib/Mail/mimePart.php index 036ce74a2..a1cf111de 100644 --- a/program/lib/Mail/mimePart.php +++ b/program/lib/Mail/mimePart.php @@ -639,8 +639,8 @@ class Mail_mimePart // RFC 2045: // value needs encoding if contains non-ASCII chars or is longer than 78 chars if (!preg_match('#[^\x20-\x7E]#', $value)) { - $token_regexp = '#([^\x21,\x23-\x27,\x2A,\x2B,\x2D' - . ',\x2E,\x30-\x39,\x41-\x5A,\x5E-\x7E])#'; + $token_regexp = '#([^\x21\x23-\x27\x2A\x2B\x2D' + . '\x2E\x30-\x39\x41-\x5A\x5E-\x7E])#'; if (!preg_match($token_regexp, $value)) { // token if (strlen($name) + strlen($value) + 3 <= $maxLength) { @@ -662,7 +662,7 @@ class Mail_mimePart // RFC2231: $encValue = preg_replace_callback( - '/([^\x21,\x23,\x24,\x26,\x2B,\x2D,\x2E,\x30-\x39,\x41-\x5A,\x5E-\x7E])/', + '/([^\x21\x23\x24\x26\x2B\x2D\x2E\x30-\x39\x41-\x5A\x5E-\x7E])/', array($this, '_encodeReplaceCallback'), $value ); $value = "$charset'$language'$encValue"; -- cgit v1.2.3