source: subversion/trunk/roundcubemail/config/main.inc.php.dist @ 423

Last change on this file since 423 was 423, checked in by robin, 6 years ago

Allow 12 hour date to display for emails sent today (Doug Mandell).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.1 KB
Line 
1<?php
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 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 +-----------------------------------------------------------------------+
12
13*/
14
15$rcmail_config = array();
16
17
18// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace
19$rcmail_config['debug_level'] = 1;
20
21// enable caching of messages and mailbox data in the local database.
22// this is recommended if the IMAP server does not run on the same machine
23$rcmail_config['enable_caching'] = TRUE;
24
25// lifetime of message cache
26// possible units: s, m, h, d, w
27$rcmail_config['message_cache_lifetime'] = '10d';
28
29// automatically create a new RoundCube user when log-in the first time.
30// a new user will be created once the IMAP login succeeds.
31// set to false if only registered users can use this service
32$rcmail_config['auto_create_user'] = TRUE;
33
34// the mail host chosen to perform the log-in
35// leave blank to show a textbox at login, give a list of hosts
36// to display a pulldown menu or set one host as string.
37// To use SSL connection, enter ssl://hostname:993
38$rcmail_config['default_host'] = '';
39
40// TCP port used for IMAP connections
41$rcmail_config['default_port'] = 143;
42
43// Automatically add this domain to user names for login
44// Only for IMAP servers that require full e-mail addresses for login
45// Specify an array with 'host' => 'domain' values to support multiple hosts
46$rcmail_config['username_domain'] = '';
47
48// This domain will be used to form e-mail addresses of new users
49// Specify an array with 'host' => 'domain' values to support multiple hosts
50$rcmail_config['mail_domain'] = '';
51
52// Path to a virtuser table file to resolve user names and e-mail addresses
53$rcmail_config['virtuser_file'] = '';
54
55// Query to resolve user names and e-mail addresses from the database
56// %u will be replaced with the current username for login.
57// The query should select the user's e-mail address as first col
58$rcmail_config['virtuser_query'] = '';
59
60// use this host for sending mails.
61// to use SSL connection, set ssl://smtp.host.com
62// if left blank, the PHP mail() function is used
63$rcmail_config['smtp_server'] = '';
64
65// SMTP port (default is 25; 465 for SSL)
66$rcmail_config['smtp_port'] = 25;
67
68// SMTP username (if required) if you use %u as the username RoundCube
69// will use the current username for login
70$rcmail_config['smtp_user'] = '';
71
72// SMTP password (if required) if you use %p as the password RoundCube
73// will use the current user's password for login
74$rcmail_config['smtp_pass'] = '';
75
76// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
77// best server supported one)
78$rcmail_config['smtp_auth_type'] = '';
79
80// Log sent messages
81$rcmail_config['smtp_log'] = TRUE;
82
83// these cols are shown in the message list
84// available cols are: subject, from, to, cc, replyto, date, size, encoding
85$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size');
86
87// relative path to the skin folder
88$rcmail_config['skin_path'] = 'skins/default/';
89
90// use this folder to store temp files (must be writebale for apache user)
91$rcmail_config['temp_dir'] = 'temp/';
92
93// use this folder to store log files (must be writebale for apache user)
94$rcmail_config['log_dir'] = 'logs/';
95
96// session lifetime in minutes
97$rcmail_config['session_lifetime'] = 10;
98
99// check client IP in session athorization
100$rcmail_config['ip_check'] = TRUE;
101
102// this key is used to encrypt the users imap password which is stored
103// in the session record (and the client cookie if remember password is enabled).
104// please provide a string of exactly 24 chars.
105$rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str';
106
107// the default locale setting
108$rcmail_config['locale_string'] = 'en';
109
110// use this format for short date display
111$rcmail_config['date_short'] = 'D H:i';
112
113// use this format for detailed date/time formatting
114$rcmail_config['date_long'] = 'd.m.Y H:i';
115
116// use this format for today's date display
117$rcmail_config['date_today'] = 'H:i';
118
119// add this user-agent to message headers when sending
120$rcmail_config['useragent'] = 'RoundCube Webmail/0.1b';
121
122// use this name to compose page titles
123$rcmail_config['product_name'] = 'RoundCube Webmail';
124
125// only list folders within this path
126$rcmail_config['imap_root'] = '';
127
128// store draft message is this mailbox
129// leave blank if draft messages should not be stored
130$rcmail_config['drafts_mbox'] = 'Drafts';
131
132// store spam messages in this mailbox
133$rcmail_config['junk_mbox'] = 'Junk';
134
135// store sent message is this mailbox
136// leave blank if sent messages should not be stored
137$rcmail_config['sent_mbox'] = 'Sent';
138
139// move messages to this folder when deleting them
140// leave blank if they should be deleted directly
141$rcmail_config['trash_mbox'] = 'Trash';
142
143// display these folders separately in the mailbox list.
144// these folders will automatically be created if they do not exist
145$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
146
147// protect the default folders from renames, deletes, and subscription changes
148$rcmail_config['protect_default_folders'] = TRUE;
149
150// Set TRUE if deleted messages should not be displayed
151// This will make the application run slower
152$rcmail_config['skip_deleted'] = FALSE;
153
154// Set true to Mark deleted messages as read as well as deleted
155// False means that a message's read status is not affected by marking it as deleted
156$rcmail_config['read_when_deleted'] = TRUE;
157
158// When a Trash folder is not present and a message is deleted, flag
159// the message for deletion rather than deleting it immediately.  Setting this to
160// false causes deleted messages to be permanantly removed if there is no Trash folder
161$rcmail_config['flag_for_deletion'] = TRUE;
162
163// Make use of the built-in spell checker. It is based on GoogieSpell.
164$rcmail_config['enable_spellcheck'] = TRUE;
165
166// For a locally installed Nox Spell Server, please specify the URI to call it.
167// Get Nox Spell Server from http://orangoo.com/labs/?page_id=72
168// Leave empty to use the Google spell checking service, what means
169// that the message content will be sent to Google in order to check spelling
170$rcmail_config['spellcheck_uri'] = '';
171
172// These languages can be selected for spell checking.
173// Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
174// Leave empty for default set of Google spell check languages
175$rcmail_config['spellcheck_languages'] = NULL;
176
177// path to a text file which will be added to each sent message
178// paths are relative to the RoundCube root folder
179$rcmail_config['generic_message_footer'] = '';
180
181// this string is used as a delimiter for message headers when sending
182// leave empty for auto-detection
183$rcmail_config['mail_header_delimiter'] = NULL;
184
185// in order to enable public ldap search, create a config array
186// like the Verisign example below. if you would like to test,
187// simply uncomment the Verisign example.
188/**
189 *  example config for Verisign directory
190 *
191 *  $rcmail_config['ldap_public']['Verisign'] = array('hosts'         => array('directory.verisign.com'),
192 *                                                    'port'          => 389,
193 *                                                    'base_dn'       => '',
194 *                                                    'search_fields' => array('Email' => 'mail', 'Name' => 'cn'),
195 *                                                    'name_field'    => 'cn',
196 *                                                    'mail_field'    => 'mail',
197 *                                                    'scope'         => 'sub',
198 *                                                    'fuzzy_search'  => 0);
199 */
200
201// don't allow these settings to be overriden by the user
202$rcmail_config['dont_override'] = array();
203
204// list of configuration option names that need to be available in Javascript.
205$rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion');
206
207// try to load host-specific configuration
208$rcmail_config['include_host_config'] = FALSE;
209
210
211/***** these settings can be overwritten by user's preferences *****/
212
213// show up to X items in list view
214$rcmail_config['pagesize'] = 40;
215
216// use this timezone to display date/time
217$rcmail_config['timezone'] = 1;
218
219// daylight savings are On
220$rcmail_config['dst_active'] = TRUE;
221
222// prefer displaying HTML messages
223$rcmail_config['prefer_html'] = TRUE;
224
225// compose html formatted messages by default
226$rcmail_config['htmleditor'] = TRUE;
227
228// show pretty dates as standard
229$rcmail_config['prettydate'] = TRUE;
230
231// default sort col
232$rcmail_config['message_sort_col'] = 'date';
233
234// default sort order
235$rcmail_config['message_sort_order'] = 'DESC';
236
237// save compose message every 300 seconds (5min)
238$rcmail_config['draft_autosave'] = 300;
239
240// default setting if preview pane is enabled
241$rcmail_config['preview_pane'] = FALSE;
242
243// end of config file
244?>
Note: See TracBrowser for help on using the repository browser.