In Roundcube after deleting the emails still stay in Inbox and throws the following error message.
Quote:
|
Can't save messages to folders.
|
Solution:
SSH to server with the root user and open the file main.inc.php in your favorite editor.
Quote:
|
#vi /usr/local/cpanel/base/3rdparty/roundcube/config/main.inc.php
|
Change the following line from
Quote:
// move messages to this folder when deleting them
// leave blank if they should be deleted directly
$rcmail_config['trash_mbox'] = '';
|
To
Quote:
// move messages to this folder when deleting them
// leave blank if they should be deleted directly
$rcmail_config['trash_mbox'] = 'Trash';
|