Roundcube Community Forum

 

Setup Folders? Inbox, Sent, Spam...

Started by CarlB, July 18, 2009, 08:20:30 PM

Previous topic - Next topic

CarlB

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

rosali

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;
Regards,
Rosali

CarlB