对于hotmail端口995,整个imap_open均无响应

时间:2019-06-20 06:22:24

标签: php codeigniter hotmail imap-open

$host = 'outlook.office365.com';
$port = '995';
$username = 'test@hotmail.com';
$password ='testpassword';
$connection1 = imap_open('{'.$host.':'.$port.'/ssl/novalidate-cert}INBOX', 
$username, $password) or die('Cannot connect to Hotmail: ' . 
imap_last_error());

在端口993(IMAP)上可以正常工作,但不能用于SSL。我不确定SSL连接埠后会使用什么参数。

0 个答案:

没有答案