ID:               40087
 Updated by:       [EMAIL PROTECTED]
 Reported By:      scalero at datadec dot es
-Status:           Assigned
+Status:           Feedback
 Bug Type:         IMAP related
 Operating System: Red Hat Enterprise Linux AS 4
 PHP Version:      5.2.1
 Assigned To:      iliaa
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows (zip):
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip

For Windows (installer):

  http://snaps.php.net/win32/php5.2-win32-installer-latest.msi




Previous Comments:
------------------------------------------------------------------------

[2007-01-12 08:36:32] scalero at datadec dot es

<?php
// I use Cyrus 2.2.10
$imapconn = imap_open("{localhost:143}INBOX","testuser","testuser"); 
$mailboxes = imap_getmailboxes($imapconn, "{localhost:143/imap/notls}",
"%");
$errors = imap_errors();

var_dump($mailboxes);
var_dump($errors);
?>


And this is the result:
array(4) {
  [0]=>
  object(stdClass)#1 (3) {
    ["name"]=>
    string(32) "{localhost:1143/imap/notls}INBOX"
    ["attributes"]=>
    int(1)
    ["delimiter"]=>
    string(1) "."
  }
  [1]=>
  object(stdClass)#2 (3) {
    ["name"]=>
    string(31) "{localhost:1143/imap/notls}test"
    ["attributes"]=>
    int(64)
    ["delimiter"]=>
    string(1) "."
  }
  [2]=>
  object(stdClass)#3 (3) {
    ["name"]=>
    string(38) "{localhost:1143/imap/notls}test second"
    ["attributes"]=>
    int(32)
    ["delimiter"]=>
    string(1) "."
  }
  [3]=>
  object(stdClass)#4 (3) {
    ["name"]=>
    string(31) "{localhost:1143/imap/notls}test"
    ["attributes"]=>
    int(34)
    ["delimiter"]=>
    string(1) "."
  }
}
bool(false)


Like you can see, the 'test' folder appears two times and the first
time it shows a 64 attributes value, but the test folder has the
childrens:

"test.aaa" and "test.bbb"

------------------------------------------------------------------------

[2007-01-11 17:04:18] scalero at datadec dot es

It don't work, now with:

PHP Version: 5.2.1RC3-dev (latest)
c-client: imap-2006d (latest)

it reproduces the same behavior. The 'test' folder appears without its
children folders.

Greetings.

------------------------------------------------------------------------

[2007-01-10 07:59:56] scalero at datadec dot es

Description:
------------
Something very strange is happening me when I create a structure of
folders like the following:

        INBOX
          test
            test.aaa
            test.bbb
          test second
            test second.ccc  
            test second.ddd

I use the following versions:
Horde           3.1.3
IMP             H3 (4.1.3)
PHP             4.4.4
c-client        imap-2004g
cyrus           2.2.10

I have tried to update c-client to the version 'imap-2006d' but I have
had this problem: http://bugs.php.net/bug.php?id=39401

Reproduce code:
---------------
imap_getmailboxes($this->_getStream(), "{localhost:1143/imap/notls}",
"%");

Expected result:
----------------
I expect each folder appears only one time with its appropriate
attributes.



Actual result:
--------------
var_dump() exit:
----------------

array(4) {
  [0]=>
  object(stdClass)(3) {
    ["name"]=>
    string(32) "{localhost:1143/imap/notls}INBOX"
    ["attributes"]=>
    int(1)
    ["delimiter"]=>
    string(1) "."
  }
  [1]=>
  object(stdClass)(3) {
    ["name"]=>
    string(31) "{localhost:1143/imap/notls}test"
    ["attributes"]=>
    int(64)
    ["delimiter"]=>
    string(1) "."
  }
  [2]=>
  object(stdClass)(3) {
    ["name"]=>
    string(38) "{localhost:1143/imap/notls}test second"
    ["attributes"]=>
    int(32)
    ["delimiter"]=>
    string(1) "."
  }
  [3]=>
  object(stdClass)(3) {
    ["name"]=>
    string(31) "{localhost:1143/imap/notls}test"
    ["attributes"]=>
    int(34)
    ["delimiter"]=>
    string(1) "."
  }
}


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=40087&edit=1

Reply via email to