HELLO,
if you want to show all the folders by default, you should do this:
edit the file : roundcubemail/program/include/main.inc
in line 464
else if ($CONFIG['auto_create_user'])
{
$user_id = rcmail_create_user($user, $host);
}
Just add these two statements befere $user_id = rcmail_create_user($user, $host);
$IMAP->create_mailbox($CONFIG['sent_mbox'], TRUE);
$IMAP->create_mailbox($CONFIG['trash_mbox'], TRUE);
it should look like this:
else if ($CONFIG['auto_create_user'])
{
$IMAP->create_mailbox($CONFIG['sent_mbox'], TRUE);
$IMAP->create_mailbox($CONFIG['trash_mbox'], TRUE);
$user_id = rcmail_create_user($user, $host);
}
If you do this, now any new user login will see the all folders by default but not an existing user.
That's it.
Best wishes.
