3

我尝试使用 Horde_Imap_Client 通过 IMAP 连接到 mit private 以及我的 google 应用程序的工作收件箱。我使用了以下配置:

$config = array(
    'username' => $username,
    'password' => $password,
    'hostspec' => 'imap.gmail.com',
    'port' => '993',
    'secure' => true,
    "debug" => "imap.log",
    "debug_literal" => true
);

我还尝试了 ssl、sslv2、sslv3 和 tls 以获得安全值。我得到的例外是Error when communicating with the mail server.imap.log 只向我展示了这个

------------------------------
>> Thu, 28 Jan 2016 18:29:14 +0100
>> Connection to: imap://imap.gmail.com:993/
>> Server connection took 0.0156 seconds.
>> Slow Command: 10.018 seconds
>> ERROR: read/timeout error.
------------------------------

我还尝试在我的谷歌帐户中允许“不安全的应用程序”,但结果是一样的。有什么线索吗?与我们的内部 IMAP 服务器和 office365 IMAP 服务器的连接工作正常

4

1 回答 1

1

改变

'secure' => true,

'secure' => 'tlsv1',

这将强制 TLSv1 连接。

我自己也遇到了同样的问题。我发布到了部落邮件列表,但一天后通过上述更改我自己解决了这个问题。

于 2016-08-19T03:52:20.157 回答