ID: 43659
User updated by: mcheung63 at hotmail dot com
Reported By: mcheung63 at hotmail dot com
Status: Open
Bug Type: IMAP related
Operating System: windows xp
PHP Version: 5.2.5
New Comment:
After i change @imap_sort($mbox,SORTDATE,1,SE_UID) to
@imap_sort($mbox,SORTDATE,1) , everything work fine, sorry about the
mistake
Previous Comments:
------------------------------------------------------------------------
[2007-12-22 16:34:10] mcheung63 at hotmail dot com
Description:
------------
Hi all, i am running php 5.2.5 with apache 2.2 in windows xp, i am try
to retrieve email headers from dovecot-1.0.7-2.fc8 runing on fedora core
8. If the email subject have unicode character, imap_headerinfo() will
return FALSE.
If i use imap_fetch_overview() to retrieve email headers, everything
fine.
thanks
from Peter ([EMAIL PROTECTED])
Reproduce code:
---------------
function getHeaderList($serverAddress, $port, $ssl, $username,
$password, $inbox, $startRowNumber, $endRowNumber){
if ($ssl){
$mbox =
imap_open("{".$serverAddress.":".$port."/ssl/novalidate-cert}".$inbox,
$username, $password);
}else{
$mbox =
imap_open("{".$serverAddress.":".$port."/novalidate-cert}".$inbox,
$username, $password);
}
[EMAIL PROTECTED]($mbox,SORTDATE,1,SE_UID);
$returnArray=Array();
$x=0;
while (list(,$qq) = each($sorted_headers)) {
$returnArray[$x++]=imap_headerinfo($mbox, $qq);
}
imap_close($mbox);
return $returnArray;
}
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=43659&edit=1