hello folks, i've a simple problem: I can't delete any message, there is no Trash folder and there is no "sent" folder.
The roundcube version I've installed is 0.3.1 and theese are some settings from main.inc.php
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
$rcmail_config['trash_mbox'] = 'Trash';
$rcmail_config['sent_mbox'] = 'Sent';
$rcmail_config['junk_mbox'] = 'Junk';
$rcmail_config['drafts_mbox'] = 'Drafts';
please help me.
best regards
Maybe your special folders are subfolders from INBOX?
If so, you have to know the folder delimiter. Usually it is a dot (.).
INBOX.trash, INBOX.sent ...
it could be, but where must I search? in the Apache Document Root? because in the INBOX folder of the web interface there is no "dotted" folder.
very thanks
You have to check the documentations of your IMAP server!
Here's a quick solution:
// in /config/main.inc.php:
$rcmail_config['create_default_folders'] = TRUE;
What if the user account already log on before the create_default_folders set to TURE ?
Did not find any clue in forum ... struggling
Quote from: qnrq;26274Here's a quick solution:
// in /config/main.inc.php:
$rcmail_config['create_default_folders'] = TRUE;
default folders are only created the first time a user logs in