ID: 43659 Updated by: [EMAIL PROTECTED] Reported By: mcheung63 at hotmail dot com -Status: Open +Status: Bogus Bug Type: IMAP related Operating System: windows xp PHP Version: 5.2.5 New Comment:
Please report IMAP c-client bugs to its developers. Thank you. Previous Comments: ------------------------------------------------------------------------ [2007-12-23 07:58:35] mcheung63 at hotmail dot com After i change @imap_sort($mbox,SORTDATE,1,SE_UID) to @imap_sort($mbox,SORTDATE,1) , everything work fine, sorry about the mistake ------------------------------------------------------------------------ [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