Author Topic: Setup Folders? Inbox, Sent, Spam...  (Read 2896 times)

Offline CarlB

  • Jr. Member
  • **
  • Posts: 11
Setup Folders? Inbox, Sent, Spam...
« 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

Offline rosali

  • Hero Member
  • *****
  • Posts: 2,533
Setup Folders? Inbox, Sent, Spam...
« Reply #1 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;
Regards,
Rosali
__________________
MyRoundcube Project (commercial)

Offline CarlB

  • Jr. Member
  • **
  • Posts: 11
Setup Folders? Inbox, Sent, Spam...
« Reply #2 on: July 19, 2009, 08:36:08 PM »
Thanks.

Thats just what I needed.