[#6951] Can't see INBOX folder
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 (64 days ago)
Due
Updated 06/26/2008 (56 days ago)
Assigned
Resolved 06/26/2008 (56 days ago)
Attachments
Milestone
Patch No

History
06/26/2008 Michael Slusarz Comment #3
State ⇒ Resolved
Reply to this comment
Marking as resolved due to the addition of the new IMAP_Tree library 
(Ticket #6972).  If this is still an issue, a new ticket should be 
opened.
06/19/2008 rsalmon (at) mbpgroup (dot) com Comment #2 Reply to this comment
I use courier-imap as the IMAP server.
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)
06/18/2008 rsalmon (at) mbpgroup (dot) com Comment #1
Patch ⇒
Milestone ⇒
Queue ⇒ DIMP
Summary ⇒ Can't see INBOX folder
Type ⇒ Bug
Priority ⇒ 1. Low
State ⇒ Unconfirmed
Reply to this comment
cvs update -Pd -D 06/16/2008 : everything works fine.
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
         )
     )
);