File plesk.kolab_folders.inc.php of Package roundcubemail-selfcontained (Revision 6a083287f46a770e48685caf6c3604ff)
Currently displaying revision 6a083287f46a770e48685caf6c3604ff , Show latest
37
1
2
3
// Default kolab-specific folders. Set values to non-empty
4
// strings to create default folders of apropriate type.
5
// If there is no default folder with specified type in user mailbox,
6
// it will be created.
7
// Note: Mail folders will be also subscribed.
8
9
// Default Configuration folder
10
$config['kolab_folders_configuration_default'] = 'Configuration';
11
// Default Calendar folder
12
$config['kolab_folders_event_default'] = 'Calendar';
13
// Default Contacts (Addressbook) folder
14
$config['kolab_folders_contact_default'] = 'Contacts';
15
// Default Tasks folder
16
$config['kolab_folders_task_default'] = 'Tasks';
17
// Default Notes folder
18
$config['kolab_folders_note_default'] = 'Notes';
19
// Default Journal folder
20
$config['kolab_folders_journal_default'] = 'Journal';
21
// Default Files folder
22
$config['kolab_folders_file_default'] = 'Files';
23
// Default FreeBusy folder
24
$config['kolab_folders_freebusy_default'] = 'Freebusy';
25
26
// INBOX folder
27
$config['kolab_folders_mail_inbox'] = 'INBOX';
28
// Drafts folder
29
$config['kolab_folders_mail_drafts'] = 'Drafts';
30
// Sent folder
31
$config['kolab_folders_mail_sentitems'] = 'Sent';
32
// Trash folder
33
$config['kolab_folders_mail_wastebasket'] = 'Trash';
34
// Others folders
35
$config['kolab_folders_mail_outbox'] = '';
36
$config['kolab_folders_mail_junkemail'] = 'INBOX.Spam';
37