On 22.11.2010 20:22, SeberIT - Erik Smeets wrote:
S: * LSUB (\Noselect \HasChildren) "." "INBOX"
I think this is the reason. I'm not sure if \Noselect flag for INBOX is a bug. Try to fix this by commenting out this part of code in function select() in rcube_imap_generic() file (line c.a.812):
/* if (is_array($this->data['LIST']) && is_array($opts = $this->data['LIST'][$mailbox])) { if (in_array('\Noselect', $opts)) { return false; } } */
Get as to know if this fixes your issue.
Hi Alec,
On Tue, 23 Nov 2010 15:45:02 +0100, "A.L.E.C" alec@alec.pl wrote:
On 22.11.2010 20:22, SeberIT - Erik Smeets wrote:
S: * LSUB (\Noselect \HasChildren) "." "INBOX"
I think this is the reason. I'm not sure if \Noselect flag for INBOX is a bug. Try to fix this by commenting out this part of code in function select() in rcube_imap_generic() file (line c.a.812):
Get as to know if this fixes your issue.
I've commented out the particular section you mentioned and this indeed fixed the issue.
Thanks for the help. Hopefully this also helps in understanding the problem for a definitive fix.