When I try to delete mail in the inbox I get the error "Could not move the message". Any advice?
- Open up your main.inc.php file. If you cannot find it, it is located in config/main.inc.php.
- After you open it, Find these lines:
// automatically create the above listed default folders on login
$rcmail_config['create_default_folders'] = FALSE;
// protect the default folders from renames, deletes, and subscription changes
$rcmail_config['protect_default_folders'] = TRUE;
- And replace them with these lines:
// automatically create the above listed default folders on login
$rcmail_config['create_default_folders'] = TRUE;
// protect the default folders from renames, deletes, and subscription changes
$rcmail_config['protect_default_folders'] = TRUE;
[/LIST]
Hope it will help you :)