|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-05-17 10:06 UTC] 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
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 13:00:01 2025 UTC |
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