Skip to content

Commit 64e1af1

Browse files
Diego da Silvamichalbundyra
Diego da Silva
authored andcommitted
Treat quote as value if already in quote using another delimiter
1 parent d52d25b commit 64e1af1

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ All notable changes to this project will be documented in this file, in reverse
2828

2929
- [#82](https://github.com/laminas/laminas-mail/pull/82) fixes numerous issues in `Storage\Maildir`. This storage adapter was not working before and unit tests were disabled.
3030

31+
- [#75](https://github.com/laminas/laminas-mail/pull/75) fixes how `Laminas\Mail\Header\ListParser::parse()` parses the string with quotes.
32+
3133
## 2.10.0 - 2018-06-07
3234

3335
### Added

src/Header/ListParser.php

+6
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ public static function parse($value, array $delims = self::CHAR_DELIMS)
7777
continue;
7878
}
7979

80+
// If already in quote and the character does not match the previously
81+
// matched quote delimiter, we're done here.
82+
if ($inQuote) {
83+
continue;
84+
}
85+
8086
// Otherwise, we're starting a quoted string.
8187
$inQuote = true;
8288
$currentQuoteDelim = $char;

test/AddressListTest.php

+22
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,26 @@ public function testKey()
200200
$this->list->next();
201201
$this->assertSame('[email protected]', $this->list->key());
202202
}
203+
204+
/**
205+
* If name-field is quoted with "", then ' inside it should not treated as terminator, but as value.
206+
*/
207+
public function testMixedQuotesInName()
208+
{
209+
$header = '"Bob O\'Reilly" <[email protected]>,[email protected]';
210+
211+
// In previous versions, this throws:
212+
// 'Bob O'Reilly <[email protected]>,blah' can not be matched against dot-atom format
213+
// hence the try/catch block, to allow finding the root cause.
214+
try {
215+
$to = Header\To::fromString('To:' . $header);
216+
} catch (InvalidArgumentException $e) {
217+
$this->fail('Header\To::fromString should not throw');
218+
}
219+
220+
$addressList = $to->getAddressList();
221+
$this->assertTrue($addressList->has('[email protected]'));
222+
$this->assertTrue($addressList->has('[email protected]'));
223+
$this->assertEquals("Bob O'Reilly", $addressList->get('[email protected]')->getName());
224+
}
203225
}

0 commit comments

Comments
 (0)