|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-02-28 16:05 UTC] chagenbu at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 22 12:00:01 2025 UTC |
Function "imap_getmailboxes()" doesn't return the mailbox name as expected. The following code (working fine with php 3.0.14) stopped working: <? $mailstream=imap_open('{127.0.0.1:143}','usr','pwd'); $list=imap_getmailboxes($mailstream,'{127.0.0.1:143}','*'); for($i = 0; $i < count($list); $i++) echo($list[$i]->name); ?> The "configure" line: ./configure \ --with-imap \ --with-mysql=/usr/local/mysql \ --with-gd \ --with-ttf \ --with-ftp \ --with-xml \ --with-apxs=/usr/local/apache/bin/apxs \ --enable-track-vars \ --enable-versioning \ --with-config-file-path=/etc; What I'm doing wrong? Thanks, PTuasca