Author Topic: Special folders set to "---" at first connexion  (Read 2070 times)

Offline LoJo

  • Jr. Member
  • **
  • Posts: 15
Special folders set to "---" at first connexion
« on: June 13, 2018, 10:39:36 AM »
Hello,
On a fresh 1.3.6 roundcube install, at the first connexion, in parameters, "special folders" ar all set to "---" in place of Draft, Sent, Trash, and Junk.
How to set it automatically when users log in for the first time ?

Here are my settings in config file :
Code: [Select]
$config['create_default_folders'] = true;
$config['protect_default_folders'] = false;
$config['show_real_foldernames'] = false;

And is ther a way to change it for the users who have already loged in ?

Thanks.

Offline LoJo

  • Jr. Member
  • **
  • Posts: 15
[Solved] Special folders set to "---" at first connexion
« Reply #1 on: June 23, 2018, 04:01:35 AM »
I solved that problem by defining :

Code: [Select]
$config['drafts_mbox'] = 'Drafts';
$config['junk_mbox'] = 'Junk';
$config['sent_mbox'] = 'Sent';
$config['trash_mbox'] = 'Trash';