|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-03-03 12:27 UTC] ronanmcnulty at hotmail dot com
Description:
------------
I can't get imap_open to connect with SSL.
I have included the openssl module, but this has made not difference
Reproduce code:
---------------
$mbox = imap_open('{'.$server.':993/imap/ssl/novalidate-cert}INBOX',$name, $pass)
Expected result:
----------------
I was hoping to have secure connections to ssl enabled imap servers.
Actual result:
--------------
ERROR: Can't open mailbox {imap.cc:993/imap/ssl/novalidate-cert}INBOX: invalid remote specification
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 06:00:01 2025 UTC |
I've tried every method stated in the manual e.g. $mbox = imap_open ("{localhost:993/imap/ssl}INBOX", "user_id", "password"); $mbox = imap_open ("{localhost:993/imap/ssl/novalidate-cert}INBOX", "user_id", "password"); I still recieve the error "invalid remote specification". I have tried it on a number of ssl enabled imap servers, and it does not work on any of them. Is this purely a windows problem? Nothing is stated in http://www.php.net/imap_open to imply that it is. I don't know what other information I can give you other than, it has been tried hundreds of times, and failed hundreds of times.