Hi there,
I'm running roundcube on my server and this is just perfect! :)
The only problem I have is that I need to set Trash, Sent and Drafts folder by hand for each user preferencies (if not only received appears).
So I was guessing if we can set it by default for the system then new user will not need to add themselves and set it in their preferencies. :)
Check the following settings in the ./config/main.inc.php:
// display these folders separately in the mailbox list.
// these folders will also be displayed with localized names
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
// automatically create the above listed default folders on login
$rcmail_config['create_default_folders'] = TRUE;
// protect the default folders from renames, deletes, and subscription changes
$rcmail_config['protect_default_folders'] = TRUE;
That works thanks :)