Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: CarlB on July 18, 2009, 08:20:30 PM

Title: Setup Folders? Inbox, Sent, Spam...
Post by: CarlB on July 18, 2009, 08:20:30 PM
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
Title: Setup Folders? Inbox, Sent, Spam...
Post by: rosali on July 19, 2009, 01:24:32 AM
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;
Title: Setup Folders? Inbox, Sent, Spam...
Post by: CarlB on July 19, 2009, 08:36:08 PM
Thanks.

Thats just what I needed.