On Mon, 8 Mar 2010 13:20:16 -0800, "Jonas Fornander" support@netwood.net wrote:
Is there a way to have RoundCube automatically create those folders -
Trash,
Draft and Sent Items - when I create a new mailbox and have it be
defined
without having to manually do it after account creation?
Yes. The following is from 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', 'spam', 'Trash');
// automatically create the above listed default folders on login $rcmail_config['create_default_folders'] = TRUE;
-ryan