Author Topic: default folders missing  (Read 54999 times)

Offline igeoffi

  • Jr. Member
  • **
  • Posts: 27
default folders missing
« on: June 27, 2006, 02:16:35 PM »
3rd time installing the svn copy
all the default folders are missing except for the Inbox folder

Offline urbanx

  • Newbie
  • *
  • Posts: 8
Re: default folders missing
« Reply #1 on: June 27, 2006, 02:26:55 PM »
 have you gone into "Personal Settings" and then "Folders"?

Rouncube lets you choose which folders to show (though i agree that sent and trash should be shown by default).

on follow up, did you set
$rcmail_config['sent_mbox']
and
$rcmail_config['trash_mbox']

in config/main.inc.php?

Offline igeoffi

  • Jr. Member
  • **
  • Posts: 27
Re: default folders missing
« Reply #2 on: June 27, 2006, 02:31:11 PM »
yup

Code: [Select]
// store draft message is this mailbox
// leave blank if draft messages should not be stored
$rcmail_config['drafts_mbox'] = 'Drafts';

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

// display these folders separately in the mailbox list
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');

and the entire config file
http://unikoi.org/roundcube_config.txt

oslad

  • Guest
Re: default folders missing
« Reply #3 on: July 06, 2006, 01:36:13 AM »
try cvs-20060413, the same problem is happen on cvs-20060505 with cyrus-imap

Offline flosoft

  • Sr. Member
  • ****
  • Posts: 349
    • http://flosoft.biz
Re: default folders missing
« Reply #4 on: July 06, 2006, 10:27:28 AM »
Try the new SVN Snapshot (Rev 273?)

Offline smalek

  • Newbie
  • *
  • Posts: 2
Possible Solution
« Reply #5 on: August 18, 2008, 07:16:39 PM »
I hade the same problem, and i read the suggestions.

actually i read urbanx suggestion and found that it was the same.

in config.main.inc.php

i found something that when changed solved the problem for me and here is the solution:

Actual file:
Code: [Select]
 
// 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';

// display these folders separately in the mailbox list.
// these folders will also be displayed with localized names
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');

// automatically create the above listed default folders on login
$rcmail_config['create_default_folders'] = [COLOR=Red]FALSE[/COLOR];
 

_______________________________

CHANGE THE FALSE TO TRUE

this should automatically allow roundcube to automatically create the listed default folders on login
_______________________________

give me an update on what happened and if it did work with you so that also others could find it useful.O0

Good Luck.

Best Regards,
smalek. ;)
« Last Edit: August 19, 2008, 12:29:11 PM by smalek »

Offline dj2

  • Jr. Member
  • **
  • Posts: 40
default folders missing
« Reply #6 on: August 18, 2008, 08:26:46 PM »
Zombie thread!

mrphantuan

  • Guest
default folders missing
« Reply #7 on: April 04, 2011, 04:19:48 AM »
try cvs-20060413, the same problem is happen on cvs-20060505 with cyrus-imap