skyrack I want to access my mailbox using php but cannot get a connection to work. $mailbox = imap_open($url, $id, $pwd); Does the server url require a port number?
sean skyrack Yes, you must include port 993 and SSL in the server URL, eg: <?php $url = "{mail.de.opalstack.com:993/imap/ssl}INBOX"; $id = "mailboxname"; $pwd = "password123"; $mailbox = imap_open($url, $id, $pwd);