ID:               19522
 User updated by:  [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Bogus
 Bug Type:         IMAP related
 Operating System: Linux
 PHP Version:      4.2.3
 New Comment:

Actually, for the record (and the next poor schmuck that gets bitten by
this)

imap_open("{localhost:143/imap/notls}",$username,$password
);

is probably the best way to ensure the same behavior as before.


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

[2002-09-22 10:36:44] [EMAIL PROTECTED]

It's c-client thing, like I suspected.
And not really bug, iirc. 


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

[2002-09-21 20:29:38] [EMAIL PROTECTED]

Using the

imap_open("{localhost:143/imap/tls/novalidate-cert}",$username,$password);

modifiers has worked around the problem. Thankyou very much. The Debian
package maintainer thinks the underlying problem is with the
libc-client deciding to negotiate TLS if it sees that capability, which
obviously has unexpected results if it's not expecting a TLS
connection.

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

[2002-09-20 12:50:07] [EMAIL PROTECTED]

This might also be one to try:
  
imap_open("{localhost:143/imap/tls/novalidate-cert}",$username,$password);


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

[2002-09-20 12:48:06] [EMAIL PROTECTED]

Look in this page for how you can pass some extra
authentication parameters:

http://www.php.net/manual/en/function.imap-open.php

Something like this should work:

 imap_open("{localhost:143/imap/tls}", $username,$password);

The c-client must of course be compiled with the ssl support..



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

[2002-09-20 08:32:44] [EMAIL PROTECTED]

The imap_open() call is:

imap_open("{localhost:143}", $username, $password);

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

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/19522

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

Reply via email to