Quoting Louis-Philippe Allard <[email protected]>:

I upgraded horde after recommendations from Horde's devs and now I can
no longer access my portal.  I changed the settings in
imp/config/backends.php to use Gmail's imap & smtp servers,  it used
to work but now I try and I get:

[snip]

My /imp/conf/backend.php:

$servers['imap'] = array(
    // ENABLED by default
    'disabled' => false,
    'name' => 'IMAP Server',
    'hostspec' => 'imap.gmail.com',
    'hordeauth' => true,
    'protocol' => 'imap',
    'port' => 993,
    // Plaintext logins are disabled by default on IMAP servers (see RFC 3501
    // [6.2.3])
    'secure' => 'tls',
    'maildomain' => '',
    // 'smtphost' => 'smtp.gmail.com',
    'smtpport' => 587,
    'cache' => false,
);

'secure' => 'tls' probably won't work because it requires an unencrypted stream. If connecting to port 993, you almost certainly want 'secure' => 'ssl' instead.

michael

___________________________________
Michael Slusarz [[email protected]]

--
IMP mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: [email protected]

Reply via email to