Roundcube Community Forum

Release Support => Pending Issues => Topic started by: Dan Silver on March 08, 2010, 10:51:53 PM

Title: Sent folder not showing
Post by: Dan Silver on March 08, 2010, 10:51:53 PM
Hello,
Does anyone know how to make the sent folder appear?
It won't show up with the other folders on the left side.
Thanks!
Dan Silver
Title: Sent folder not showing
Post by: dshepherd on March 09, 2010, 07:14:15 AM
You can do this in the personal settings. First you need to create a sent folder in the folders tab and then you need to go to special folders and select your sent folder in the sent dropdown box.
Title: Sent folder not showing
Post by: Nate82 on April 04, 2010, 03:21:58 AM
Is it possible to do a setting in the conf so the users do not have to assign the Special folders themselves?
Title: Sent folder not showing
Post by: JohnDoh on April 04, 2010, 05:26:33 AM
take a look in the config file for these options....

Code: [Select]
// store draft message is this mailbox
// leave blank if draft messages should not be stored
$rcmail_config['drafts_mbox'] = 'Drafts';

// store spam messages in this mailbox
$rcmail_config['junk_mbox'] = 'Junk';

// store sent message is this mailbox
// leave blank if sent messages should not be stored
$rcmail_config['sent_mbox'] = 'Sent';

// move messages to this folder when deleting them
// leave blank if they should be deleted directly
$rcmail_config['trash_mbox'] = 'Trash';

// 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'] = false;

// protect the default folders from renames, deletes, and subscription changes
$rcmail_config['protect_default_folders'] = true;

they let you assign the special folders, weather or not to create them at first login if they dont exist and weather or not to protect them (users cant unsubscribe, delete them etc)