ID: 28419
Comment by: tomato at pisem dot net
Reported By: stepanov at transchip dot com
Status: Open
Bug Type: IMAP related
Operating System: Windows XP Professional SP1
PHP Version: 4CVS-2004-05-17 (stable)
New Comment:
I'm using php 4.3.8 and getting the same error
furthermore, error_reporting(E_ALL ^ E_NOTICE); didn't helped I got
this notice anyway
Previous Comments:
------------------------------------------------------------------------
[2004-05-17 17:34:41] stepanov at transchip dot com
Yes, I am using the latest PHP (4.3.7-dev)
I run the folowing:
$mbox = imap_open ("{192.168.0.250:143}Inbox", "xxx", "xxx");
And i get the:
Warning: imap_open(): Couldn't open stream {192.168.0.250:143}Inbox in
C:\html\test\imap.php on line 12
Notice: (null)(): Can't connect to 192.168.0.250,143: Refused (10061)
(errflg=2) in Unknown on line 0
if i run $mbox = @imap_open ("{192.168.0.250:143}Inbox", "xxx",
"xxx");
i get:
Notice: (null)(): Can't connect to 192.168.0.250,143: Refused (10061)
(errflg=2) in Unknown on line 0
------------------------------------------------------------------------
[2004-05-17 15:32:11] [EMAIL PROTECTED]
Are you absolutely sure you are using the latest PHP? I've
checked the source code of the extension and the only error
you can get while opening an imap connection can go
something like this:
Couldn't open stream ...
------------------------------------------------------------------------
[2004-05-17 10:06:12] stepanov at transchip dot com
Description:
------------
When IMAP connection is refused I get following notice:
Notice: (null)(): Can't connect to 192.168.0.251,143: Refused (10061)
(errflg=2) in Unknown on line 0
Reproduce code:
---------------
$mbox = @imap_open ("{192.168.0.251:143}Inbox", "user", "pass");
Expected result:
----------------
Because of calling the function with @ I expect don't see the notice.
And if I see the notice, I expect to see the file name and line number
where the error occurred, and not "in Unknown on line 0"
Actual result:
--------------
Notice: (null)(): Can't connect to 192.168.0.251,143: Refused (10061)
(errflg=2) in Unknown on line 0
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=28419&edit=1