[imp] Anyone else getting long delays after login, then things work fine until new imap connections opened? (cyrus imap 2.3.x)
Andrew Morgan
morgan at orst.edu
Thu Jun 28 21:27:37 UTC 2007
On Thu, 28 Jun 2007, Yoseff Francus wrote:
> Horde 3.1.4
> IMP H3 (4.1.4)
>
> On Wed, 27 Jun 2007, Eric Jon Rostetter wrote:
>
>> Quoting Yoseff Francus <francus at yossi.com>:
>>
>>> By George I think we may have something! When I look at my folders I see
>>> everything in my home directory and on down when all I should see is my
>>> mail folders. I logged in to an account that has almost nothing in the
>>> home directory and things came up very quickly.
>>
>> Yep, I think we found the problem, but the solution still lurks.
>>
>> What version of IMP are you running (see "Help -> About" or look at
>> the file horde/imp/lib/version.php)?
>>
>>> My servers.php entry looks correct, perhaps I am missing something?
>>>
>>> $servers['imap'] = array(
>>> 'name' => 'machine-ssl',
>>> 'server' => 'machine.com',
>>> 'hordeauth' => false,
>>> 'protocol' => 'imap/ssl/novalidate-cert',
>>> 'port' => 993,
>>> 'folders' => 'mail/',
>>> 'namespace' => '',
>>> 'maildomain' => 'machine.com',
>>> 'smtphost' => 'mail.machine.com',
>>> 'realm' => 'machine.com',
>>> 'preferred' => '',
>>> 'quota' => false,
>>> 'dotfiles' => false,
>>> 'hierarchies' => array()
>>> );
You'll want this:
$servers['imap'] = array(
'name' => 'machine-ssl',
'server' => 'machine.com',
'protocol' => 'imap/ssl/novalidate-cert',
'port' => 993,
'maildomain' => 'machine.com',
'smtphost' => 'mail.machine.com',
'realm' => 'machine.com',
'imap_config' => array(
'children' => false,
'namespace' => array(
'mail/' => array(
'name' => 'mail/',
'delimiter' => '/',
'type' => 'personal',
'hidden' => false,
)
),
'search_charset' => array(
'UTF-8' => true
)
),
);
Andy
More information about the imp
mailing list