I have all my folders coming off of my INBOX.
INBOX
INBOX.Sent
INBOX.Spam
INBOX.Drafts
etc.
I have the main.inc.php as follows:
// only list folders within this path
$rcmail_config['imap_root'] = '';
// 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';
// display these folders separately in the mailbox list
$rcmail_config['default_imap_folders'] = array('INBOX', 'INBOX.Drafts', 'INBOX.Sent', 'INBOX.Spam', 'INBOX.Trash');
However, the icons don't appear for the Trash, Sent, etc. If I put INBOX as "only list foloders within this path" it shows up, but I will have no INBOX.
Thanks for any advice with this.
I just installed roundcube today and got it working in a couple of minutes. Great system! Keep up the great work. Have a blast trying this out.
robert.
I have the same problems with my install.
My folders are: INBOX, INBOX.Sent, INBOX.Trash, INBOX.Drafts
I have my deleted messages going to INBOX.Trash successfully.
I have my sent messages going to INBOX.Sent successfully.
However, roundcube does not seem to distinguish between these folders and others. They are not given any special icon in the folder list.
My main.inc.php section looks like this:
// only list folders within this path $rcmail_config['imap_root'] = '';
// 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';
// display these folders separately in the mailbox list $rcmail_config['default_imap_folders'] = array('INBOX', 'INBOX.Drafts', 'INBOX.Sent', 'INBOX.Trash');
For me, if I put INBOX as "only list foloders within this path" it displays mail from the INBOX folder, but I do not see any of the folders within the INBOX hierarchy.
Kevin L. Bezaleel, DTG . blur@ekreativity.com wrote:
I have all my folders coming off of my INBOX.
INBOX
INBOX.Sent
INBOX.Spam
INBOX.Drafts
etc.
I have the main.inc.php as follows:
// only list folders within this path
$rcmail_config['imap_root'] = '';
// 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';
// display these folders separately in the mailbox list
$rcmail_config['default_imap_folders'] = array('INBOX', 'INBOX.Drafts', 'INBOX.Sent', 'INBOX.Spam', 'INBOX.Trash');
However, the icons don't appear for the Trash, Sent, etc. If I put INBOX as "only list foloders within this path" it shows up, but I will have no INBOX.
Thanks for any advice with this.
I just installed roundcube today and got it working in a couple of minutes. Great system! Keep up the great work. Have a blast trying this out.
robert.
Hi Robert, You have to modifiy the stylesheet.
find the trash class definition and change it to inboxtrash rinse and repeat for the others (these are very specific, nested definitions, just search for trash and you will see what I mean)
HTH, j.
On Tue, 18 Oct 2005 0:00:58 -0400, blur@ekreativity.com wrote:
I have all my folders coming off of my INBOX.
INBOX
INBOX.Sent
INBOX.Spam
INBOX.Drafts
etc.
I have the main.inc.php as follows:
// only list folders within this path
$rcmail_config['imap_root'] = '';
// 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';
// display these folders separately in the mailbox list
$rcmail_config['default_imap_folders'] = array('INBOX', 'INBOX.Drafts', 'INBOX.Sent', 'INBOX.Spam', 'INBOX.Trash');
However, the icons don't appear for the Trash, Sent, etc. If I put INBOX as "only list foloders within this path" it shows up, but I will have no INBOX.
Thanks for any advice with this.
I just installed roundcube today and got it working in a couple of minutes. Great system! Keep up the great work. Have a blast trying this out.
robert.
On Mon, October 17, 2005 9:00 pm, blur@ekreativity.com said:
I have all my folders coming off of my INBOX.
INBOX INBOX.Sent INBOX.Spam INBOX.Drafts etc.
I have the main.inc.php as follows:
// only list folders within this path $rcmail_config['imap_root'] = '';
You should be using INBOX as your imap_root in this situation.
The patch I submitted to the list a couple days ago resolves this issue.