ID: 24490 Updated by: [EMAIL PROTECTED] Reported By: bob at midnightweb dot net -Status: Open +Status: Feedback Bug Type: IMAP related Operating System: RedHat Linux 8.0 PHP Version: 4.3.3RC2-dev New Comment:
Just checked this with the latest CVS and imap-2002d (they don't have 2002b-6 there anymore). Everything works as expected (see output below). Could you compile PHP against a newer IMAP lib, e.g. 2002d? --------------------------------------- [EMAIL PROTECTED] src]$ ./imap_test.php Content-type: text/html X-Powered-By: PHP/4.3.3RC2-dev object(stdClass)(23) { ["date"]=> string(31) "Mon, 21 Jul 2003 11:53:47 -0700" ["Date"]=> string(31) "Mon, 21 Jul 2003 11:53:47 -0700" ["subject"]=> string(5) "test3" ["Subject"]=> string(5) "test3" ["message_id"]=> string(30) "<[EMAIL PROTECTED]>" ["toaddress"]=> string(96) ""[EMAIL PROTECTED]" <[EMAIL PROTECTED]>, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>" ["to"]=> array(2) { [0]=> object(stdClass)(3) { ["personal"]=> string(18) "[EMAIL PROTECTED]" ["mailbox"]=> string(4) "vlad" ["host"]=> string(13) "echospace.com" } [1]=> object(stdClass)(3) { ["personal"]=> string(24) "[EMAIL PROTECTED]" ["mailbox"]=> string(10) "vkegeneric" ["host"]=> string(13) "echospace.com" } } ... Previous Comments: ------------------------------------------------------------------------ [2003-07-04 05:21:23] bob at midnightweb dot net I installed the reccommended CVS snapshot, and the To field is still only populating one address. ------------------------------------------------------------------------ [2003-07-04 01:50:20] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-STABLE-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-STABLE-latest.zip ------------------------------------------------------------------------ [2003-07-03 18:14:00] bob at midnightweb dot net Description: ------------ The imap_headerinfo() function appears to only return the first address in the To field of messages that contain more than one address in that field. Addresses in the Cc field apear to be unaffected by this bug. I have tried upgrading the C-Client to 2002b-6, and then recompiling the latest stable PHP release ( 4.3.2 ). The examples are given with a message with the following To headers: -- Begin snipit -- From: "Bob" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> -- End snipit -- NOTE: The email addresses in this report have been altered to preserve the privacy of the user. Reproduce code: --------------- $mailbox = imap_open($servername.".$cfldr", $username, $password); $msgheader = @imap_headerinfo($mailbox, $msg); ob_start(); print_r( $msgheader ); error_log( ob_get_contents() ); ob_end_clean(); Expected result: ---------------- In the error_log of the web server, there should be a print_r output of the object returned by imap_headerinfo() that looks as follows with the "to" and "toaddress" elements: -- Begin assumed snipit -- [toaddress] => "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> [to] => Array ( [0] => stdClass Object ( [personal] => [EMAIL PROTECTED] [mailbox] => user [host] => mydomain.com ) [1] => stdClass Object ( [personal] => [EMAIL PROTECTED] [mailbox] => user2 [host] => mydomain.com ) [2] => stdClass Object ( [personal] => [EMAIL PROTECTED] [mailbox] => user3 [host] => mydomain.com ) ) -- End assumed snipit -- Actual result: -------------- There is the print_r output, however with incomplete "to" array and "toaddress" string elements: -- Begin snipit -- [toaddress] => "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> [to] => Array ( [0] => stdClass Object ( [personal] => [EMAIL PROTECTED] [mailbox] => user [host] => mydomain.com ) ) -- End snipit -- ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=24490&edit=1