Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: ccc1997 on April 16, 2009, 11:37:29 AM

Title: How to Automatically Store Sent Items?
Post by: ccc1997 on April 16, 2009, 11:37:29 AM
I have searched to try to find a solution so that emails that are sent have a copy automatically stored in the sent messages folder.  

This is in my main.inc.php conf file:

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

This seems that it should work, but is not.  Any suggestions?
Title: How to Automatically Store Sent Items?
Post by: ccc1997 on April 16, 2009, 04:51:07 PM
I was able to get this to work, but in a fashion I would not want to repeat often.  I had to go into the personal settings of each user and goto the special folders section and assign folders accordingly.  

Drafts assigned to Drafts
Sent assigned to Sent
Junk assigned to Trash
Trash assigned to Trash

How can I get these settings to 'stick' for ALL users?
Title: How to Automatically Store Sent Items?
Post by: rosali on April 17, 2009, 01:01:03 AM
Try to exclude from overriding by the config option "dont_override" ...


// don't allow these settings to be overriden by the user
$rcmail_config['dont_override'] = array('sent_mbox', ... etc.);