Howdy,
I have RoundCube working but am running into a small isue with folders.
Most mail clients will make default folders for Sent mail and Spam.
But RoundCube is not.
I can manualy add the folders, but most of my sites useres will not know how to do this.
Is there any way to have RoundCube make and configure these folders?
Thanks!
Carl
It never hurts to read 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;
Thanks.
Thats just what I needed.