summaryrefslogtreecommitdiff
path: root/tests/maildecode.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/maildecode.php')
-rw-r--r--tests/maildecode.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/maildecode.php b/tests/maildecode.php
index ef3d18246..7d67352c3 100644
--- a/tests/maildecode.php
+++ b/tests/maildecode.php
@@ -46,6 +46,8 @@ class rcube_test_maildecode extends UnitTestCase
18 => '"Test,Test" <test@domain.tld>',
// 1487939
19 => 'Test <"test test"@domain.tld>',
+ 20 => '<"test test"@domain.tld>',
+ 21 => '"test test"@domain.tld',
);
$results = array(
@@ -69,6 +71,8 @@ class rcube_test_maildecode extends UnitTestCase
17 => array(1, '', 'test@domain.tld'),
18 => array(1, 'Test,Test', 'test@domain.tld'),
19 => array(1, 'Test', '"test test"@domain.tld'),
+ 20 => array(1, '', '"test test"@domain.tld'),
+ 21 => array(1, '', '"test test"@domain.tld'),
);
foreach ($headers as $idx => $header) {