Roundcube Community Forum

Release Support => Pending Issues => Topic started by: lhwparis on March 31, 2008, 08:50:14 AM

Title: create email folders on first login?
Post by: lhwparis on March 31, 2008, 08:50:14 AM
hi, is there an option to let create folders like Sent Trash or Junk when user is loggging in the first time and these folders doesnt exist??
Title: Re: create email folders on first login?
Post by: guilichou on March 31, 2008, 09:36:27 AM
How about reading the configuration file config/main.inc.php and finding the answer alone ?

Title: Re: create email folders on first login?
Post by: brewnchew on March 31, 2008, 08:12:24 PM
Yes, as Guilichou stated it is in the main.inc.php file in your config folder. The following variable needs to be set to TRUE. The default setting is FALSE.

// automatically create the above listed default folders on login
$rcmail_config['create_default_folders'] = TRUE;

I don't have the line number just do a find on create_default_folders.

Chew