Control Web Panel

WebPanel => Aplications => Topic started by: yaya on December 01, 2015, 07:07:01 AM

Title: Roundcube Mailbox doesn't exist: Trash
Post by: yaya 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
Title: Re: Roundcube Mailbox doesn't exist: Trash
Post by: yaya on December 01, 2015, 08:34:33 AM
I think, the Roundcube can not create directory "Trash"
Title: Re: Roundcube Mailbox doesn't exist: Trash
Post by: Glenn 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;


Title: Re: Roundcube Mailbox doesn't exist: Trash
Post by: yaya 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