Hello,
I have an issue with my roundcube setup when using this:
// display these folders separately in the mailbox list.
// these folders will also be displayed with localized names
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
It works and roundcube recognize all folders as the sepcial folders.
But I want to set the folders as sub folders in the inbox like:
// display these folders separately in the mailbox list.
// these folders will also be displayed with localized names
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['default_folders'] = array('INBOX', 'INBOX.Drafts', 'INBOX.Sent', 'INBOX.Junk', 'INBOX.Trash');
But after that setting roundcube see the INBOX.foldername as a normal folder and the special folder setting is empty, with every new user mailbox account I need to set the special folders manually.
Hope you got a solution.
that is ths default folders setting but not the special folders setting. you need to set all the speical folders settings too, the ones like $config['drafts_mbox'].
Quote from: JohnDoh on June 04, 2014, 07:11:25 AM
that is ths default folders setting but not the special folders setting. you need to set all the speical folders settings too, the ones like $config['drafts_mbox'].
Thank you for your fast reply, I see the settings now in the config, I had a quick search in the forum and in the config file for "folders" but did not found that solution. Thank you will try it out.
Sorry I have another question, the plugin archive that is in the package, I cannot find how I can set the archive folder for new users is this also possible?
i have never used it myself but it looks like if you add $config['archive_mbox'] to your config file that will do it.
Thank you for your reply, I have tested and the archive works, only on the settings page the archive folder is set to -- but it works.