通过 Horde_Imap_Client 连接到 Gmail

Connecting to Gmail via Horde_Imap_Client

我尝试使用 Horde_Imap_Client 通过 IMAP 连接到 mit private 以及我的 google apps for work 收件箱。我使用了以下配置:

$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.
------------------------------

我也尝试在我的 google 帐户中允许 "insecure apps",但结果是一样的。有什么线索吗?我们的内部 IMAP 服务器和 office365 IMAP 服务器的连接工作正常

改变

'secure' => true,

'secure' => 'tlsv1',

这将强制 TLSv1 连接。

我自己 运行 遇到了同样的问题。 I posted to the Horde mailing list but was able to resolve the issue a day later 我自己进行了上述更改。