RoundCubeMail - Solution for error by deleting of mails
I have found the solution of the problem.
Following "BUG" is known:
You have created a new mail-box, get a mail and want delete it, but there comes an error-message, that the mail couldn´t delete.
Solution for the problem:
Log into roundcube, go to settings, and create a new folder with name: "Trash" That´s it. The problem should now eliminated
- // create INBOX if it does not exist
- if (!in_array_nocase('INBOX', $a_folders))
+ // create Default folders if they do not exist
+ global $CONFIG;
+ foreach ($CONFIG['default_imap_folders'] as $folder)
{
- $this->create_mailbox('INBOX', TRUE);
- array_unshift($a_folders, 'INBOX');
+ if (!in_array_nocase($folder, $a_folders))
+ {
+ $this->create_mailbox($folder, TRUE);
+ $this->subscribe($folder);
+ }
}
Recent comments
1 day 10 hours ago
1 day 19 hours ago
1 day 22 hours ago
1 day 23 hours ago
2 days 57 min ago
2 days 2 hours ago
2 days 4 hours ago
2 days 5 hours ago
2 days 21 hours ago
2 days 22 hours ago