+ Reply to Thread
Results 1 to 4 of 4

Thread: Sent folder not showing

  1. #1
    Dan Silver is offline Roundcube Newcomer
    Join Date
    Mar 2010
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default Sent folder not showing

    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

  2. #2
    dshepherd is offline Registered User
    Join Date
    Oct 2009
    Posts
    87
    Downloads
    1
    Uploads
    0

    Default

    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.

  3. #3
    Nate82 is offline Roundcube Newcomer
    Join Date
    Apr 2010
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default

    Is it possible to do a setting in the conf so the users do not have to assign the Special folders themselves?

  4. #4
    JohnDoh is offline Super Moderator
    Join Date
    May 2007
    Posts
    1,206
    Downloads
    6
    Uploads
    0

    Default

    take a look in the config file for these options....

    Code:
    // 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)
    Roundcube Patches: Sieverules, SpamAssassin Prefs, and more…

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts