Aleksander Machniak
2014-02-23 55d9d5e0b7c75d7a4a2f59a76a8fdc793bf78b43
Improvement in handling invalid email address strings
2 files modified
7 ■■■■■ changed files
program/lib/Roundcube/rcube_mime.php 4 ●●●● patch | view | raw | blame | history
tests/Framework/Mime.php 3 ●●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_mime.php
@@ -366,6 +366,9 @@
                $address = 'MAILER-DAEMON';
                $name    = substr($val, 0, -strlen($m[1]));
            }
            else if (preg_match('/('.$email_rx.')/', $val, $m)) {
                $name = $m[1];
            }
            else {
                $name = $val;
            }
@@ -387,6 +390,7 @@
            if (!$address && $name) {
                $address = $name;
                $name    = '';
            }
            if ($address) {
tests/Framework/Mime.php
@@ -42,6 +42,8 @@
            // invalid (#1489092)
            22 => '"John Doe @ SomeBusinessName" <MAILER-DAEMON>',
            23 => '=?UTF-8?B?IlRlc3QsVGVzdCI=?= <test@domain.tld>',
            // invalid, but we do our best to parse correctly
            24 => '"email@test.com" <>',
        );
        $results = array(
@@ -70,6 +72,7 @@
            // invalid (#1489092)
            22 => array(1, 'John Doe @ SomeBusinessName', 'MAILER-DAEMON'),
            23 => array(1, 'Test,Test', 'test@domain.tld'),
            24 => array(1, '', 'email@test.com'),
        );
        foreach ($headers as $idx => $header) {