Roundcube Community Forum

 

Can't delete mail

Started by brady, May 07, 2008, 01:55:44 PM

Previous topic - Next topic

brady

When I try to delete mail in the inbox I get the error "Could not move the message".  Any advice?

ozbeklar

  • 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 :)