Author Topic: 0.5.1 - Configuration with cyrus  (Read 2491 times)

Offline lmalmeida01

  • Newbie
  • *
  • Posts: 1
0.5.1 - Configuration with cyrus
« on: February 21, 2011, 01:53:04 PM »
Hello,
I am having a problem configuring roundcube v0.5.1 with cyrus.

We have some folders that are private and some shared folders. When I list those in imap, I have something like:
....
* LIST (\HasNoChildren) "/" "INBOX/Test"
* LIST (\HasNoChildren) "/" "INBOX/Trash"
* LIST (\HasNoChildren) "/" "shared.folder"

2 problems so far:
1) With the config bellow, the inbox and shared folders are flat (inbox/Test at same level as shared.folder) . The shared folders can not be accessed.
$rcmail_config['imap_ns_personal'] = null;
$rcmail_config['imap_ns_other']    = null;
$rcmail_config['imap_ns_shared']   = null;
The message in logs/imap is something like:
[21-Feb-2011 18:47:56 +0000]: C: A0003 STATUS INBOX/shared.folder (MESSAGES UNSEEN)
[21-Feb-2011 18:47:56 +0000]: S: A0003 NO Mailbox does not exist

2) With the config bellow, the inbox folders (inbox and shared). Neither the folders inside the inbox nor the shared folders can be accessed.
$rcmail_config['imap_ns_personal'] = "INBOX.";
$rcmail_config['imap_ns_other']    = null;
$rcmail_config['imap_ns_shared']   = null;
21-Feb-2011 18:49:38 +0000]: C: A0003 STATUS INBOX.INBOX/Test (MESSAGES UNSEEN)
[21-Feb-2011 18:49:38 +0000]: S: A0003 NO Mailbox does not exist
---
[21-Feb-2011 18:51:29 +0000]: C: A0003 STATUS INBOX.shared.folder (MESSAGES UNSEEN)
[21-Feb-2011 18:51:29 +0000]: S: A0003 NO Mailbox does not exist

This server suports the NAMESPACE.

Any ideas about what the config should be?

Thanks,