Monday, October 31, 2011

Roundcube: Server Error: UID COPY: Unknown namespace

Ir uzlikta tāda lieta, kā roundcube webmail.

Pēc kāda no atjauninājumiem, ielīdis iekšā paskatīties, es pēkšņi saprotu, ka nevaru izdzēst epastus. Kā nospied uz dzēšanas pogas, tā augšā parādās šāds, daudzsološs, kļudas paziņojums: "UID COPY: Unknown namespace".



Fiksēšana:
Atveram webmaila direktorijā failiņu "config/main.inc.php", un atrodam sekojošas rindas:

// 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';


Un izmainam rindas uz šādām:


// 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';


Tas tā kā būtu arī viss...

No comments: