From b579f42b550a5c3f3bf11a0cee13149d67c1bcd8 Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 12 Mar 2010 13:54:56 +0000 Subject: - fixes for proper handling of email addresses with form: "user"@domain.tld --- program/include/rcube_smtp.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'program/include/rcube_smtp.php') diff --git a/program/include/rcube_smtp.php b/program/include/rcube_smtp.php index 658e4760c..1dfe222d5 100644 --- a/program/include/rcube_smtp.php +++ b/program/include/rcube_smtp.php @@ -392,14 +392,14 @@ class rcube_smtp { $addresses = array(); $recipients = rcube_explode_quoted_string(',', $recipients); - + reset($recipients); while (list($k, $recipient) = each($recipients)) { $a = explode(" ", $recipient); while (list($k2, $word) = each($a)) { - if ((strpos($word, "@") > 0) && (strpos($word, "\"")===false)) + if (strpos($word, "@") > 0 && $word[strlen($word)-1] != '"') { $word = preg_replace('/^<|>$/', '', trim($word)); if (in_array($word, $addresses)===false) @@ -411,5 +411,3 @@ class rcube_smtp { } } - -?> -- cgit v1.2.3