Summary | Can't see INBOX folder |
Queue | DIMP |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | rsalmon (at) mbpgroup (dot) com |
Created | 06/18/2008 (6210 days ago) |
Due | |
Updated | 06/27/2008 (6201 days ago) |
Assigned | |
Resolved | 06/27/2008 (6201 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
(
Ticket #6972). If this is still an issue, a new ticket should beopened.
I have a folder called ".INBOX.Sent" (probably created by Outlook or
thunderbird) in /home/rsalmon/Maildir. It appears like this in IMP :
- INBOX
+-- INBOX
+-- Sent
Removing this folder solve the first issue (not beeing able to see INBOX)
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ DIMP
Summary ⇒ Can't see INBOX folder
Type ⇒ Bug
State ⇒ Unconfirmed
cvs update -Pd -D 06/17/2008 :
- I can't see/access INBOX folder with the following
imp/config/server.php file
$servers['imap'] = array(
'name' => 'IMAP Server',
'server' => '127.0.0.1',
'hordeauth' => true,
'protocol' => 'imap/notls',
'port' => 143,
'maildomain' => 'mbpgroup.com',
'smtphost' => ''127.0.0.1',
'smtpport' => 25,
'realm' => '',
'preferred' => '',
'quota' => array(
'driver' => 'imap',
'params' => array(),
),
'acl' => array(
'driver' => 'rfc2086',
)
);
- I can see/access INBOX folder with the following
imp/config/server.php file but when expanding the folder tree, a
vertical scoll bar appears on the main window and not the sidebar like
it use to be.
/* Example configurations: */
$servers['imap'] = array(
'name' => 'Courier IMAP Server',
'server' => '127.0.0.1',
'hordeauth' => true,
'protocol' => 'imap/notls',
'port' => 143,
'maildomain' => 'mbpgroup.com',
'smtphost' => '127.0.0.1',
'smtpport' => 25,
'realm' => '',
'preferred' => '',
'quota' => array(
'driver' => 'imap',
'params' => array(),
),
'acl' => array(
'driver' => 'rfc2086',
),
'imap_config' => array(
'children' => true,
'namespace' => array(
'' => array(
'name' => '',
'delimiter' => '.',
'type' => 'personal',
'hidden' => false
),
'#shared.' => array(
'name' => '#shared.',
'delimiter' => '.',
'type' => 'personal',
'hidden' => false
),
),
'search_charset' => array(
'UTF-8' => true
)
)
);