Hello,
I've upgraded my RC to version 0.5 and I have problems when I want to delete email.
When I click to delete email I get message:
Server Error: UID COPY: Unknown namespace.
But when I go to Settings > Special Folders > and set
Drafts -> Drafts
Trash -> Trash
Everything works fine...
Is it possible to configure that automaticaly for all users by default?
yep take a look in the main config file, you can set all the special folders.
Quote from: JohnDoh;32581yep take a look in the main config file, you can set all the special folders.
As I can see it's already there, but it doesn't works until I manualy setup this folders via web interface...
// store draft message is this mailbox
// leave blank if draft messages should not be stored
$rcmail_config['drafts_mbox'] = 'Drafts';
// store spam messages in this mailbox
$rcmail_config['junk_mbox'] = 'Junk';
// store sent message is this mailbox
// leave blank if sent messages should not be stored
$rcmail_config['sent_mbox'] = 'Sent';
// move messages to this folder when deleting them
// leave blank if they should be deleted directly
$rcmail_config['trash_mbox'] = 'Trash';
FIX
Roundcube v0.5
Debian + Dovecot
// store draft message is this mailbox
// leave blank if draft messages should not be stored
$rcmail_config['drafts_mbox'] = 'INBOX.Drafts';
// store spam messages in this mailbox
$rcmail_config['junk_mbox'] = 'INBOX.Junk';
// store sent message is this mailbox
// leave blank if sent messages should not be stored
$rcmail_config['sent_mbox'] = 'INBOX.Sent';
// move messages to this folder when deleting them
// leave blank if they should be deleted directly
$rcmail_config['trash_mbox'] = 'INBOX.Trash';