ID:               20871
 User updated by:  [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Open
 Bug Type:         IMAP related
 Operating System: win2K
 PHP Version:      4.3.0-dev
 New Comment:

imap_fetchbody() fails. 

I had to add some code to the script to make it write all it's output
to some file on disk (i simply cloned "echo" with "fputs").

Now it seems that the imap_fetchbody() function makes apache restart
(and PHP - to crash). Sorry for previous mishinting.


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

[2002-12-19 16:37:35] [EMAIL PROTECTED]

Sorry for bothering. Any good news on the subject?

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

[2002-12-11 05:48:21] [EMAIL PROTECTED]

<?
$port="110";
$server="localhost";
$uname="test";
$passw="1234";

phpinfo(); //to start the output

$mbox = imap_open ("{".$server.":".$port."/pop3}INBOX", "$uname",
"$passw");
echo imap_last_error()."<br>";

$totmsg=imap_num_msg($mbox); //still works
if ($totmsg>0) echo "some messages found<br>";

$headers=imap_search($mbox, "FROM @", 0);//fails
$headers=imap_headers($mbox);//fails

//any of above would 'crash'.


if (is_array($headers))echo "Total messages found:
".count($headers)."/$totmsg<br>";
?>

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

[2002-12-11 05:14:11] [EMAIL PROTECTED]

Please provide a short, complete and self-contained example
script which can be used to reproduce this.


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

[2002-12-11 04:22:02] [EMAIL PROTECTED]

I'd be glad to know if any measures are being taken in order to fix the
buggie. 
I hope that you at least succeeded reproduction of the bug.

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

[2002-12-06 20:38:06] [EMAIL PROTECTED]

Latest snapshot did not help. Actually, i fount the better place to
"breakpoint" - I did comment out the line containing
"$headers=imap_search($mbox, "FROM @");"

*perhaps* that is the point where a crash(?) occures.

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

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/20871

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

Reply via email to