diff options
author | alecpl <alec@alec.pl> | 2011-08-09 09:46:54 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-08-09 09:46:54 +0000 |
commit | 6d0ada30d7847a509db10d819020ac653597d073 (patch) | |
tree | c14e28bc4a0f0699cf4eecb87e55a80836097351 /program/include/rcube_smtp.php | |
parent | efc24a5fb3d5d70e9066b1994f3b41b248e59ccd (diff) |
- Fix handling of email addresses with quoted local part (#1487939)
Diffstat (limited to 'program/include/rcube_smtp.php')
-rw-r--r-- | program/include/rcube_smtp.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/include/rcube_smtp.php b/program/include/rcube_smtp.php index 120336c49..73c30d227 100644 --- a/program/include/rcube_smtp.php +++ b/program/include/rcube_smtp.php @@ -439,14 +439,14 @@ class rcube_smtp // if we're passed an array, assume addresses are valid and implode them before parsing. if (is_array($recipients)) $recipients = implode(', ', $recipients); - + $addresses = array(); $recipients = rcube_explode_quoted_string(',', $recipients); reset($recipients); while (list($k, $recipient) = each($recipients)) { - $a = explode(" ", $recipient); + $a = rcube_explode_quoted_string(' ', $recipient); while (list($k2, $word) = each($a)) { if (strpos($word, "@") > 0 && $word[strlen($word)-1] != '"') @@ -457,6 +457,7 @@ class rcube_smtp } } } + return $addresses; } |