thomascube
2005-09-30 15fee7b8dd9991c798e6b3eeb9f98cd34e8153fc
commit | author | age
4e17e6 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
5  | Main configuration file                                               |
6  |                                                                       |
7  | This file is part of the RoundCube Webmail client                     |
8  | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
9  | All rights reserved.                                                  |
10  |                                                                       |
11  +-----------------------------------------------------------------------+
12
13 */
14
15 $rcmail_config = array();
16
17
18 // system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show
19 $rcmail_config['debug_level'] = 5;
20
21 // automatically create a new user when log-in the first time
22 // set to false if only registered users can use this service
23 $rcmail_config['auto_create_user'] = TRUE;
24
25 // the mail host chosen to perform the log-in
26 // leave blank to show a textbox at login, give a list of hosts
27 // to display a pulldown menu or set one host as string
28 $rcmail_config['default_host'] = '';
29
30 // use this host for sending mails.
31 // if left blank, the PHP mail() function is used
32 $rcmail_config['smtp_server'] = '';
33
34 // SMTP username (if required)
35 $rcmail_config['smtp_user'] = '';
36
37 // SMTP password (if required)
38 $rcmail_config['smtp_pass'] = '';
39
40 // Log sent messages
41 $rcmail_config['smtp_log'] = TRUE;
42
43 // these cols are shown in the message list
44 // available cols are: subject, from, to, cc, replyto, date, size, encoding
45 $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size');
46
47 // relative path to the skin folder
48 $rcmail_config['skin_path'] = 'skins/default/';
49
50 // use this folder to store temp files (must be writebale for apache user)
51 $rcmail_config['temp_dir'] = 'temp/';
52
53 // check client IP in session athorization
54 $rcmail_config['ip_check'] = TRUE;
55
56 // not shure what this was good for :-) 
57 $rcmail_config['locale_string'] = 'de_DE';
58
59 // use this format for short date display
60 $rcmail_config['date_short'] = 'D H:i';
61
62 // use this format for detailed date/time formatting
63 $rcmail_config['date_long'] = 'd.m.Y H:i';
64
65 // add this user-agent to message headers when sending
66 $rcmail_config['useragent'] = 'RoundCube Webmail/0.1a';
67
68 // only list folders within this path
69 $rcmail_config['imap_root'] = '';
70
71 // store sent message is this mailbox
72 // leave blank if sent messages should not be stored
73 $rcmail_config['sent_mbox'] = 'Sent';
74
75 // move messages to this folder when deleting them
76 // leave blank if they should be deleted directly
77 $rcmail_config['trash_mbox'] = 'Trash';
78
79 // display these folders separately in the mailbox list
80 $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
81
82
83 /***** these settings can be overwritten by user's preferences *****/
84
85 // show up to X items in list view
86 $rcmail_config['pagesize'] = 40;
87
88 // use this timezone to display date/time
89 $rcmail_config['timezone'] = 1;
90
91 // prefer displaying HTML messages
92 $rcmail_config['prefer_html'] = TRUE;
93
30233b 94 // show pretty dates as standard
T 95 $rcmail_config['prettydate'] = TRUE;
96
4e17e6 97
T 98 // end of config file
99 ?>