Skip to content

Commit 05a9368

Browse files
committed
Fix AddressList toString method to quote semicolon
Signed-off-by: Elan Ruusamäe <[email protected]>
1 parent ce81ab4 commit 05a9368

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

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)