Author Topic: Roundcube Mailbox doesn't exist: Trash  (Read 33376 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
Roundcube Mailbox doesn't exist: Trash
« on: December 01, 2015, 07:07:01 AM »
Hi,

I try to delete some emails from Roundcube but a system show error "Server Error: UID COPY: Mailbox doesn't exist: Trash"

This is my trash.conf file
1 Spam
# Uncomment if you want trash as well
2 Trash
and I already have been upgrade Roundcube Webmail  to 1.1.3

Please help to fix

Thank you
Yaya

Offline
*
Re: Roundcube Mailbox doesn't exist: Trash
« Reply #1 on: December 01, 2015, 08:34:33 AM »
I think, the Roundcube can not create directory "Trash"

Offline
**
Re: Roundcube Mailbox doesn't exist: Trash
« Reply #2 on: December 01, 2015, 11:22:59 AM »
Have a look in /usr/local/apache/htdocs/roundcube/config/defaults.inc.php if the following lines exist and are correct

// store draft message is this mailbox
// leave blank if draft messages should not be stored
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['drafts_mbox'] = 'Drafts';

// store spam messages in this mailbox
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['junk_mbox'] = 'Junk';

// store sent message is this mailbox
// leave blank if sent messages should not be stored
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['sent_mbox'] = 'Sent';

// move messages to this folder when deleting them
// leave blank if they should be deleted directly
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['trash_mbox'] = 'Trash';

// automatically create the above listed default folders on first login
$config['create_default_folders'] = true;



Offline
*
Re: Roundcube Mailbox doesn't exist: Trash
« Reply #3 on: December 03, 2015, 02:48:28 AM »
Have a look in /usr/local/apache/htdocs/roundcube/config/defaults.inc.php if the following lines exist and are correct

// store draft message is this mailbox
// leave blank if draft messages should not be stored
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['drafts_mbox'] = 'Drafts';

// store spam messages in this mailbox
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['junk_mbox'] = 'Junk';

// store sent message is this mailbox
// leave blank if sent messages should not be stored
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['sent_mbox'] = 'Sent';

// move messages to this folder when deleting them
// leave blank if they should be deleted directly
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
$config['trash_mbox'] = 'Trash';

// automatically create the above listed default folders on first login
$config['create_default_folders'] = true;

Hi Glenn

Thank you so much and it works

Yaya