Skip to content

Commit 55fe529

Browse files
committed
Merge branch 'hotfix/93-addresslist-semicolon' into develop
Forward port #93
2 parents 8da3e4a + fbe8139 commit 55fe529

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ All notable changes to this project will be documented in this file, in reverse
4444

4545
### Fixed
4646

47-
- Nothing.
47+
- [#93](https://github.com/laminas/laminas-mail/pull/93) fixes an issue whereby an address containing a `;` character was not getting quoted, causing it to be interpreted as an address separator instead of part of the address.
4848

4949
## 2.10.1 - 2020-04-21
5050

src/Header/AbstractAddressList.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ public function getFieldValue($format = HeaderInterface::FORMAT_RAW)
135135
$email = $address->getEmail();
136136
$name = $address->getName();
137137

138-
if (! empty($name) && false !== strstr($name, ',')) {
138+
// quote $name if value requires so
139+
if (! empty($name) && (false !== strpos($name, ',') || false !== strpos($name, ';'))) {
140+
// FIXME: what if name contains double quote?
139141
$name = sprintf('"%s"', $name);
140142
}
141143

@@ -241,7 +243,7 @@ protected static function getComments($value)
241243
* Supposed to be private, protected as a workaround for PHP bug 68194
242244
*
243245
* @param string $value
244-
* @return void
246+
* @return string
245247
*/
246248
protected static function stripComments($value)
247249
{

test/Storage/MessageTest.php

+26
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
use Exception as GeneralException;
1212
use Laminas\Mail\Exception as MailException;
13+
use Laminas\Mail\Headers;
1314
use Laminas\Mail\Storage;
1415
use Laminas\Mail\Storage\Exception;
1516
use Laminas\Mail\Storage\Message;
@@ -433,6 +434,31 @@ public function testSpaceInFieldName()
433434
$this->assertEquals(Mime\Decode::splitHeaderField($header, 'baz'), 42);
434435
}
435436

437+
/**
438+
* splitMessage with Headers as input fails to process AddressList with semicolons
439+
*
440+
* @see https://github.com/laminas/laminas-mail/pull/93
441+
*/
442+
public function testHeadersLosesNameQuoting()
443+
{
444+
$headerList = [
445+
'From: "Famous bearings |;" <[email protected]>',
446+
'Reply-To: "Famous bearings |:" <[email protected]>',
447+
];
448+
449+
// create Headers object from array
450+
Mime\Decode::splitMessage(implode("\r\n", $headerList), $headers1, $body);
451+
$this->assertInstanceOf(Headers::class, $headers1);
452+
// create Headers object from Headers object
453+
Mime\Decode::splitMessage($headers1, $headers2, $body);
454+
$this->assertInstanceOf(Headers::class, $headers2);
455+
456+
// test that same problem does not happen with Storage\Message internally
457+
$message = new Message(['headers' => $headers2, 'content' => (string)$body]);
458+
$this->assertEquals('"Famous bearings |;" <[email protected]>', $message->from);
459+
$this->assertEquals('Famous bearings |: <[email protected]>', $message->replyTo);
460+
}
461+
436462
/**
437463
* @group Laminas-372
438464
*/

0 commit comments

Comments
 (0)