Aleksander Machniak
2016-03-18 7c04110698958e1541a9f115e1877562d53e5085
commit | author | age
4e17e6 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
acc005 5  | Main configuration file with default settings                         |
4e17e6 6  |                                                                       |
e019f2 7  | This file is part of the Roundcube Webmail client                     |
acc005 8  | Copyright (C) 2005-2013, The Roundcube Dev Team                       |
7fe381 9  |                                                                       |
T 10  | Licensed under the GNU General Public License version 3 or            |
11  | any later version with exceptions for skins & plugins.                |
12  | See the README file for a full license statement.                     |
4e17e6 13  +-----------------------------------------------------------------------+
T 14 */
15
acc005 16 $config = array();
AM 17
18 // ----------------------------------
19 // SQL DATABASE
20 // ----------------------------------
21
22 // Database connection string (DSN) for read+write operations
23 // Format (compatible with PEAR MDB2): db_provider://user:password@host/database
24 // Currently supported db_providers: mysql, pgsql, sqlite, mssql or sqlsrv
25 // For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
26 // NOTE: for SQLite use absolute path: 'sqlite:////full/path/to/sqlite.db?mode=0646'
9bacb2 27 $config['db_dsnw'] = 'mysql://roundcube:@localhost/roundcubemail';
acc005 28
AM 29 // Database DSN for read-only operations (if empty write database will be used)
30 // useful for database replication
31 $config['db_dsnr'] = '';
32
92d18c 33 // Disable the use of already established dsnw connections for subsequent reads
TB 34 $config['db_dsnw_noread'] = false;
35
acc005 36 // use persistent db-connections
AM 37 // beware this will not "always" work as expected
38 // see: http://www.php.net/manual/en/features.persistent-connections.php
39 $config['db_persistent'] = false;
40
41 // you can define specific table (and sequence) names prefix
42 $config['db_prefix'] = '';
43
a69f99 44 // Mapping of table names and connections to use for ALL operations.
TB 45 // This can be used in a setup with replicated databases and a DB master
46 // where read/write access to cache tables should not go to master.
47 $config['db_table_dsn'] = array(
48 //    'cache' => 'r',
49 //    'cache_index' => 'r',
50 //    'cache_thread' => 'r',
51 //    'cache_messages' => 'r',
52 );
53
44f58b 54 // It is possible to specify database variable values e.g. some limits here.
AM 55 // Use them if your server is not MySQL or for better performance.
56 // For example Roundcube uses max_allowed_packet value (in bytes)
57 // which limits query size for database cache operations.
ab84cc 58 $config['db_max_allowed_packet'] = null;
44f58b 59
4e17e6 60
2d08c5 61 // ----------------------------------
A 62 // LOGGING/DEBUGGING
63 // ----------------------------------
64
5be6dc 65 // system error reporting, sum of: 1 = log; 4 = show
acc005 66 $config['debug_level'] = 1;
4e17e6 67
b77d0d 68 // log driver:  'syslog' or 'file'.
acc005 69 $config['log_driver'] = 'file';
b77d0d 70
0ad27c 71 // date format for log entries
A 72 // (read http://php.net/manual/en/function.date.php for all format characters)  
acc005 73 $config['log_date_format'] = 'd-M-Y H:i:s O';
0ad27c 74
561f5e 75 // length of the session ID to prepend each log line with
TB 76 // set to 0 to avoid session IDs being logged.
77 $config['log_session_id'] = 8;
78
b77d0d 79 // Syslog ident string to use, if using the 'syslog' log driver.
acc005 80 $config['syslog_id'] = 'roundcube';
b77d0d 81
A 82 // Syslog facility to use, if using the 'syslog' log driver.
83 // For possible values see installer or http://php.net/manual/en/function.openlog.php
acc005 84 $config['syslog_facility'] = LOG_USER;
b77d0d 85
3786a4 86 // Activate this option if logs should be written to per-user directories.
TB 87 // Data will only be logged if a directry <log_dir>/<username>/ exists and is writable.
88 $config['per_user_logging'] = false;
89
3e3429 90 // Log sent messages to <log_dir>/sendmail or to syslog
acc005 91 $config['smtp_log'] = true;
b77d0d 92
060467 93 // Log successful/failed logins to <log_dir>/userlogins or to syslog
acc005 94 $config['log_logins'] = false;
b77d0d 95
fcc7f8 96 // Log session authentication errors to <log_dir>/session or to syslog
acc005 97 $config['log_session'] = false;
fcc7f8 98
2d08c5 99 // Log SQL queries to <log_dir>/sql or to syslog
acc005 100 $config['sql_debug'] = false;
cc97ea 101
2d08c5 102 // Log IMAP conversation to <log_dir>/imap or to syslog
acc005 103 $config['imap_debug'] = false;
6dc026 104
2d08c5 105 // Log LDAP conversation to <log_dir>/ldap or to syslog
acc005 106 $config['ldap_debug'] = false;
cc9570 107
2d08c5 108 // Log SMTP conversation to <log_dir>/smtp or to syslog
acc005 109 $config['smtp_debug'] = false;
f5d61d 110
2d08c5 111 // ----------------------------------
A 112 // IMAP
113 // ----------------------------------
4e17e6 114
768e33 115 // The mail host chosen to perform the log-in.
AM 116 // Leave blank to show a textbox at login, give a list of hosts
42b113 117 // to display a pulldown menu or set one host as string.
f86e8f 118 // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
bb8721 119 // Supported replacement variables:
d359dc 120 // %n - hostname ($_SERVER['SERVER_NAME'])
B 121 // %t - hostname without the first part
122 // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
b04c51 123 // %s - domain name after the '@' from e-mail address provided at login screen
d359dc 124 // For example %n = mail.domain.tld, %t = domain.tld
768e33 125 // WARNING: After hostname change update of mail_host column in users table is
AM 126 //          required to match old user data records with the new host.
9bacb2 127 $config['default_host'] = 'localhost';
4e17e6 128
42b113 129 // TCP port used for IMAP connections
acc005 130 $config['default_port'] = 143;
42b113 131
00f347 132 // IMAP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or null to use
4dd417 133 // best server supported one)
acc005 134 $config['imap_auth_type'] = null;
b026c3 135
109bcc 136 // IMAP socket context options
AM 137 // See http://php.net/manual/en/context.ssl.php
138 // The example below enables server certificate validation
139 //$config['imap_conn_options'] = array(
140 //  'ssl'         => array(
141 //     'verify_peer'  => true,
142 //     'verify_depth' => 3,
143 //     'cafile'       => '/etc/openssl/certs/ca.crt',
144 //   ),
145 // );
146 $config['imap_conn_options'] = null;
147
148 // IMAP connection timeout, in seconds. Default: 0 (use default_socket_timeout)
149 $config['imap_timeout'] = 0;
150
151 // Optional IMAP authentication identifier to be used as authorization proxy
152 $config['imap_auth_cid'] = null;
153
154 // Optional IMAP authentication password to be used for imap_auth_cid
155 $config['imap_auth_pw'] = null;
156
00290a 157 // If you know your imap's folder delimiter, you can specify it here.
A 158 // Otherwise it will be determined automatically
acc005 159 $config['imap_delimiter'] = null;
030c84 160
00290a 161 // If IMAP server doesn't support NAMESPACE extension, but you're
A 162 // using shared folders or personal root folder is non-empty, you'll need to
163 // set these options. All can be strings or arrays of strings.
e3af1f 164 // Folders need to be ended with directory separator, e.g. "INBOX."
A 165 // (special directory "~" is an exception to this rule)
02491a 166 // These can be used also to overwrite server's namespaces
acc005 167 $config['imap_ns_personal'] = null;
AM 168 $config['imap_ns_other']    = null;
169 $config['imap_ns_shared']   = null;
00290a 170
d8c440 171 // By default IMAP capabilities are readed after connection to IMAP server
A 172 // In some cases, e.g. when using IMAP proxy, there's a need to refresh the list
173 // after login. Set to True if you've got this case.
acc005 174 $config['imap_force_caps'] = false;
d8c440 175
f75f65 176 // By default list of subscribed folders is determined using LIST-EXTENDED
A 177 // extension if available. Some servers (dovecot 1.x) returns wrong results
178 // for shared namespaces in this case. http://trac.roundcube.net/ticket/1486225
179 // Enable this option to force LSUB command usage instead.
ed3e51 180 // Deprecated: Use imap_disabled_caps = array('LIST-EXTENDED')
acc005 181 $config['imap_force_lsub'] = false;
f75f65 182
3c5489 183 // Some server configurations (e.g. Courier) doesn't list folders in all namespaces
AM 184 // Enable this option to force listing of folders in all namespaces
acc005 185 $config['imap_force_ns'] = false;
3c5489 186
ed3e51 187 // List of disabled imap extensions.
AM 188 // Use if your IMAP server has broken implementation of some feature
189 // and you can't remove it from CAPABILITY string on server-side.
190 // For example UW-IMAP server has broken ESEARCH.
191 // Note: Because the list is cached, re-login is required after change.
7c6848 192 $config['imap_disabled_caps'] = array();
a1fe6b 193
561f5e 194 // Log IMAP session identifers after each IMAP login.
TB 195 // This is used to relate IMAP session with Roundcube user sessions
196 $config['imap_log_session'] = false;
197
8edb3d 198 // Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache'.
acc005 199 $config['imap_cache'] = null;
5cf5ee 200
A 201 // Enables messages cache. Only 'db' cache is supported.
769829 202 // This requires an IMAP server that supports QRESYNC and CONDSTORE
AM 203 // extensions (RFC7162). See synchronize() in program/lib/Roundcube/rcube_imap_cache.php
204 // for further info, or if you experience syncing problems.
acc005 205 $config['messages_cache'] = false;
5cf5ee 206
61ccdf 207 // Lifetime of IMAP indexes cache. Possible units: s, m, h, d, w
acc005 208 $config['imap_cache_ttl'] = '10d';
61ccdf 209
67ac6e 210 // Lifetime of messages cache. Possible units: s, m, h, d, w
acc005 211 $config['messages_cache_ttl'] = '10d';
5cf5ee 212
21601b 213 // Maximum cached message size in kilobytes.
AM 214 // Note: On MySQL this should be less than (max_allowed_packet - 30%)
215 $config['messages_cache_threshold'] = 50;
216
217
2d08c5 218 // ----------------------------------
A 219 // SMTP
220 // ----------------------------------
f88d41 221
c3b676 222 // SMTP server host (for sending mails).
2d08c5 223 // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
c3b676 224 // If left blank, the PHP mail() function is used
bb8721 225 // Supported replacement variables:
A 226 // %h - user's IMAP hostname
d359dc 227 // %n - hostname ($_SERVER['SERVER_NAME'])
B 228 // %t - hostname without the first part
229 // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
11be93 230 // %z - IMAP domain (IMAP hostname without the first part)
d359dc 231 // For example %n = mail.domain.tld, %t = domain.tld
acc005 232 $config['smtp_server'] = '';
4e17e6 233
e52aae 234 // SMTP port (default is 25; use 587 for STARTTLS or 465 for the
T 235 // deprecated SSL over SMTP (aka SMTPS))
acc005 236 $config['smtp_port'] = 25;
968bdc 237
e019f2 238 // SMTP username (if required) if you use %u as the username Roundcube
d206c1 239 // will use the current username for login
acc005 240 $config['smtp_user'] = '';
4e17e6 241
e019f2 242 // SMTP password (if required) if you use %p as the password Roundcube
d206c1 243 // will use the current user's password for login
acc005 244 $config['smtp_pass'] = '';
4e17e6 245
d206c1 246 // SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
S 247 // best server supported one)
acc005 248 $config['smtp_auth_type'] = '';
d206c1 249
63d4d6 250 // Optional SMTP authentication identifier to be used as authorization proxy
acc005 251 $config['smtp_auth_cid'] = null;
63d4d6 252
a1fe6b 253 // Optional SMTP authentication password to be used for smtp_auth_cid
acc005 254 $config['smtp_auth_pw'] = null;
a39212 255
aca3d2 256 // SMTP HELO host 
S 257 // Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages 
258 // Leave this blank and you will get the server variable 'server_name' or 
b07426 259 // localhost if that isn't defined.
acc005 260 $config['smtp_helo_host'] = '';
aca3d2 261
bc94e2 262 // SMTP connection timeout, in seconds. Default: 0 (use default_socket_timeout)
cd9e41 263 // Note: There's a known issue where using ssl connection with
AM 264 // timeout > 0 causes connection errors (https://bugs.php.net/bug.php?id=54511)
acc005 265 $config['smtp_timeout'] = 0;
b07426 266
357f9c 267 // SMTP socket context options
AM 268 // See http://php.net/manual/en/context.ssl.php
269 // The example below enables server certificate validation, and
270 // requires 'smtp_timeout' to be non zero.
271 // $config['smtp_conn_options'] = array(
272 //   'ssl'         => array(
109bcc 273 //     'verify_peer'  => true,
AM 274 //     'verify_depth' => 3,
275 //     'cafile'       => '/etc/openssl/certs/ca.crt',
357f9c 276 //   ),
AM 277 // );
278 $config['smtp_conn_options'] = null;
279
109bcc 280
b07426 281 // ----------------------------------
AM 282 // LDAP
283 // ----------------------------------
284
285 // Type of LDAP cache. Supported values: 'db', 'apc' and 'memcache'.
acc005 286 $config['ldap_cache'] = 'db';
b07426 287
AM 288 // Lifetime of LDAP cache. Possible units: s, m, h, d, w
acc005 289 $config['ldap_cache_ttl'] = '10m';
f07d23 290
2d08c5 291 // ----------------------------------
A 292 // SYSTEM
293 // ----------------------------------
64608b 294
2d08c5 295 // THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA.
A 296 // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING!
acc005 297 $config['enable_installer'] = false;
4e17e6 298
e04e31 299 // don't allow these settings to be overriden by the user
acc005 300 $config['dont_override'] = array();
e04e31 301
d01f9f 302 // List of disabled UI elements/actions
AM 303 $config['disabled_actions'] = array();
304
4a05e8 305 // define which settings should be listed under the 'advanced' block
TB 306 // which is hidden by default
307 $config['advanced_prefs'] = array();
308
c04b23 309 // provide an URL where a user can get support for this Roundcube installation
T 310 // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
acc005 311 $config['support_url'] = '';
c04b23 312
T 313 // replace Roundcube logo with this image
314 // specify an URL relative to the document root of this Roundcube installation
d81d69 315 // an array can be used to specify different logos for specific template files, '*' for default logo
P 316 // for example array("*" => "/images/roundcube_logo.png", "messageprint" => "/images/roundcube_logo_print.png")
acc005 317 $config['skin_logo'] = null;
c04b23 318
T 319 // automatically create a new Roundcube user when log-in the first time.
320 // a new user will be created once the IMAP login succeeds.
321 // set to false if only registered users can use this service
acc005 322 $config['auto_create_user'] = true;
c04b23 323
565c47 324 // Enables possibility to log in using email address from user identities
acc005 325 $config['user_aliases'] = false;
565c47 326
402c1b 327 // use this folder to store log files
AY 328 // must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
2d08c5 329 // This is used by the 'file' log driver.
57def0 330 $config['log_dir'] = RCUBE_INSTALL_PATH . 'logs/';
d559cb 331
402c1b 332 // use this folder to store temp files
AY 333 // must be writeable for the user who runs PHP process (Apache user if mod_php is being used)
57def0 334 $config['temp_dir'] = RCUBE_INSTALL_PATH . 'temp/';
19862b 335
de8687 336 // expire files in temp_dir after 48 hours
DC 337 // possible units: s, m, h, d, w
338 $config['temp_dir_ttl'] = '48h';
339
2d08c5 340 // enforce connections over https
A 341 // with this option enabled, all non-secure connections will be redirected.
342 // set the port for the ssl connection as value of this option if it differs from the default 443
acc005 343 $config['force_https'] = false;
acb08f 344
00e18b 345 // tell PHP that it should work as under secure connection
A 346 // even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set)
347 // e.g. when you're running Roundcube behind a https proxy
377bc6 348 // this option is mutually exclusive to 'force_https' and only either one of them should be set to true.
acc005 349 $config['use_https'] = false;
00e18b 350
1cca4f 351 // Allow browser-autocompletion on login form.
A 352 // 0 - disabled, 1 - username and host only, 2 - username, host, password
acc005 353 $config['login_autocomplete'] = 0;
fbe24e 354
c72325 355 // Forces conversion of logins to lower case.
AM 356 // 0 - disabled, 1 - only domain part, 2 - domain and local part.
df95e7 357 // If users authentication is case-insensitive this must be enabled.
AM 358 // Note: After enabling it all user records need to be updated, e.g. with query:
359 //       UPDATE users SET username = LOWER(username);
acc005 360 $config['login_lc'] = 2;
ae39c4 361
95d90f 362 // Includes should be interpreted as PHP files
acc005 363 $config['skin_include_php'] = false;
fd8c50 364
b6267d 365 // display software version on login screen
acc005 366 $config['display_version'] = false;
b6267d 367
95d90f 368 // Session lifetime in minutes
acc005 369 $config['session_lifetime'] = 10;
7902df 370
ae7027 371 // Session domain: .example.org
acc005 372 $config['session_domain'] = '';
cf2da2 373
ae7027 374 // Session name. Default: 'roundcube_sessid'
acc005 375 $config['session_name'] = null;
bd34ca 376
8d2963 377 // Session authentication cookie name. Default: 'roundcube_sessauth'
TB 378 $config['session_auth_name'] = null;
379
ae7027 380 // Session path. Defaults to PHP session.cookie_path setting.
acc005 381 $config['session_path'] = null;
ae7027 382
42de33 383 // Backend to use for session storage. Can either be 'db' (default), 'memcache' or 'php'
TB 384 // If set to 'memcache', a list of servers need to be specified in 'memcache_hosts'
63e992 385 // Make sure the Memcache extension (http://pecl.php.net/package/memcache) version >= 2.0.0 is installed
42de33 386 // Setting this value to 'php' will use the default session save handler configured in PHP
acc005 387 $config['session_storage'] = 'db';
63e992 388
T 389 // Use these hosts for accessing memcached
71ee56 390 // Define any number of hosts in the form of hostname:port or unix:///path/to/socket.file
acc005 391 $config['memcache_hosts'] = null; // e.g. array( 'localhost:11211', '192.168.1.12:11211', 'unix:///var/tmp/memcached.sock' );
63e992 392
de3fc1 393 // Controls the use of a persistent connections to memcache servers
TB 394 // See http://php.net/manual/en/memcache.addserver.php
395 $config['memcache_pconnect'] = true;
396
397 // Value in seconds which will be used for connecting to the daemon
398 // See http://php.net/manual/en/memcache.addserver.php
399 $config['memcache_timeout'] = 1;
400
401 // Controls how often a failed server will be retried (value in seconds).
402 // Setting this parameter to -1 disables automatic retry.
403 // See http://php.net/manual/en/memcache.addserver.php
404 $config['memcache_retry_interval'] = 15;
405
3fca23 406 // check client IP in session authorization
acc005 407 $config['ip_check'] = false;
4e17e6 408
ef721f 409 // List of trusted proxies
FE 410 // X_FORWARDED_* and X_REAL_IP headers are only accepted from these IPs
411 $config['proxy_whitelist'] = array();
412
a77cf2 413 // check referer of incoming requests
acc005 414 $config['referer_check'] = false;
a77cf2 415
c170bf 416 // X-Frame-Options HTTP header value sent to prevent from Clickjacking.
T 417 // Possible values: sameorigin|deny. Set to false in order to disable sending them
acc005 418 $config['x_frame_options'] = 'sameorigin';
c170bf 419
bac7d1 420 // this key is used to encrypt the users imap password which is stored
T 421 // in the session record (and the client cookie if remember password is enabled).
422 // please provide a string of exactly 24 chars.
acc005 423 $config['des_key'] = 'rcmail-!24ByteDESkey*Str';
bac7d1 424
2d08c5 425 // Automatically add this domain to user names for login
A 426 // Only for IMAP servers that require full e-mail addresses for login
427 // Specify an array with 'host' => 'domain' values to support multiple hosts
6a642d 428 // Supported replacement variables:
A 429 // %h - user's IMAP hostname
d359dc 430 // %n - hostname ($_SERVER['SERVER_NAME'])
B 431 // %t - hostname without the first part
432 // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
11be93 433 // %z - IMAP domain (IMAP hostname without the first part)
d359dc 434 // For example %n = mail.domain.tld, %t = domain.tld
acc005 435 $config['username_domain'] = '';
2d08c5 436
96f59c 437 // Force domain configured in username_domain to be used for login.
AM 438 // Any domain in username will be replaced by username_domain.
439 $config['username_domain_forced'] = false;
440
2d08c5 441 // This domain will be used to form e-mail addresses of new users
A 442 // Specify an array with 'host' => 'domain' values to support multiple hosts
bb8721 443 // Supported replacement variables:
A 444 // %h - user's IMAP hostname
445 // %n - http hostname ($_SERVER['SERVER_NAME'])
446 // %d - domain (http hostname without the first part)
11be93 447 // %z - IMAP domain (IMAP hostname without the first part)
d359dc 448 // For example %n = mail.domain.tld, %t = domain.tld
acc005 449 $config['mail_domain'] = '';
2d08c5 450
A 451 // Password charset.
452 // Use it if your authentication backend doesn't support UTF-8.
453 // Defaults to ISO-8859-1 for backward compatibility
acc005 454 $config['password_charset'] = 'ISO-8859-1';
2d08c5 455
A 456 // How many seconds must pass between emails sent by a user
acc005 457 $config['sendmail_delay'] = 0;
2d08c5 458
751b22 459 // Maximum number of recipients per message. Default: 0 (no limit)
acc005 460 $config['max_recipients'] = 0; 
751b22 461
d1851b 462 // Maximum allowednumber of members of an address group. Default: 0 (no limit)
T 463 // If 'max_recipients' is set this value should be less or equal
acc005 464 $config['max_group_members'] = 0; 
d1851b 465
9bacb2 466 // Name your service. This is displayed on the login screen and in the window title
acc005 467 $config['product_name'] = 'Roundcube Webmail';
2d08c5 468
9bacb2 469 // Add this user-agent to message headers when sending
TB 470 $config['useragent'] = 'Roundcube Webmail/'.RCMAIL_VERSION;
2d08c5 471
A 472 // try to load host-specific configuration
473 // see http://trac.roundcube.net/wiki/Howto_Config for more details
acc005 474 $config['include_host_config'] = false;
2d08c5 475
A 476 // path to a text file which will be added to each sent message
e019f2 477 // paths are relative to the Roundcube root folder
acc005 478 $config['generic_message_footer'] = '';
2d08c5 479
5852c1 480 // path to a text file which will be added to each sent HTML message
e019f2 481 // paths are relative to the Roundcube root folder
acc005 482 $config['generic_message_footer_html'] = '';
5852c1 483
2d08c5 484 // add a received header to outgoing mails containing the creators IP and hostname
acc005 485 $config['http_received_header'] = false;
2d08c5 486
A 487 // Whether or not to encrypt the IP address and the host name
488 // these could, in some circles, be considered as sensitive information;
489 // however, for the administrator, these could be invaluable help
490 // when tracking down issues.
acc005 491 $config['http_received_header_encrypt'] = false;
2d08c5 492
ac8edb 493 // This string is used as a delimiter for message headers when sending
A 494 // a message via mail() function. Leave empty for auto-detection
acc005 495 $config['mail_header_delimiter'] = NULL;
2d08c5 496
6b6f2e 497 // number of chars allowed for line when wrapping text.
T 498 // text wrapping is done when composing/sending messages
acc005 499 $config['line_length'] = 72;
6b6f2e 500
T 501 // send plaintext messages as format=flowed
acc005 502 $config['send_format_flowed'] = true;
2d08c5 503
232535 504 // According to RFC2298, return receipt envelope sender address must be empty.
AM 505 // If this option is true, Roundcube will use user's identity as envelope sender for MDN responses.
acc005 506 $config['mdn_use_from'] = false;
232535 507
2d08c5 508 // Set identities access level:
A 509 // 0 - many identities with possibility to edit all params
510 // 1 - many identities with possibility to edit all params but not email address
511 // 2 - one identity with possibility to edit all params
512 // 3 - one identity with possibility to edit all params but not email address
f12585 513 // 4 - one identity with possibility to edit only signature
acc005 514 $config['identities_level'] = 0;
2d08c5 515
3cc1af 516 // Maximum size of uploaded image in kilobytes
AM 517 // Images (in html signatures) are stored in database as data URIs
518 $config['identity_image_size'] = 64;
519
f7b58a 520 // Mimetypes supported by the browser.
T 521 // attachments of these types will open in a preview window
522 // either a comma-separated list or an array: 'text/plain,text/html,text/xml,image/jpeg,image/gif,image/png,application/pdf'
acc005 523 $config['client_mimetypes'] = null;  # null == default
f7b58a 524
0a8397 525 // Path to a local mime magic database file for PHPs finfo extension.
TB 526 // Set to null if the default path should be used.
acc005 527 $config['mime_magic'] = null;
0a8397 528
9e1605 529 // Absolute path to a local mime.types mapping table file.
0a8397 530 // This is used to derive mime-types from the filename extension or vice versa.
9e1605 531 // Such a file is usually part of the apache webserver. If you don't find a file named mime.types on your system,
TB 532 // download it from http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
acc005 533 $config['mime_types'] = null;
2d08c5 534
2ea271 535 // path to imagemagick identify binary (if not set we'll use Imagick or GD extensions)
acc005 536 $config['im_identify_path'] = null;
0501b6 537
2ea271 538 // path to imagemagick convert binary (if not set we'll use Imagick or GD extensions)
acc005 539 $config['im_convert_path'] = null;
0501b6 540
031491 541 // Size of thumbnails from image attachments displayed below the message content.
TB 542 // Note: whether images are displayed at all depends on the 'inline_images' option.
543 // Set to 0 to display images in full size.
acc005 544 $config['image_thumbnail_size'] = 240;
031491 545
0501b6 546 // maximum size of uploaded contact photos in pixel
acc005 547 $config['contact_photo_size'] = 160;
0501b6 548
2d08c5 549 // Enable DNS checking for e-mail address validation
acc005 550 $config['email_dns_check'] = false;
2d08c5 551
e04e31 552 // Disables saving sent messages in Sent folder (like gmail) (Default: false)
AM 553 // Note: useful when SMTP server stores sent mail in user mailbox
acc005 554 $config['no_save_sent_messages'] = false;
e04e31 555
681ba6 556 // Improve system security by using special URL with security token.
AM 557 // This can be set to a number defining token length. Default: 16.
558 // Warning: This requires http server configuration. Sample:
559 //    RewriteRule ^/roundcubemail/[a-f0-9]{16}/(.*) /roundcubemail/$1 [PT]
560 //    Alias /roundcubemail /var/www/roundcubemail/
561 // Note: Use assets_path to not prevent the browser from caching assets
562 $config['use_secure_urls'] = false;
563
564 // Allows to define separate server/path for image/js/css files
565 // Warning: If the domain is different cross-domain access to some
566 // resources need to be allowed
567 // Sample:
568 //    <FilesMatch ".(eot|ttf|woff)">
569 //    Header set Access-Control-Allow-Origin "*"
570 //    </FilesMatch>
571 $config['assets_path'] = '';
572
573 // While assets_path is for the browser, assets_dir informs
574 // PHP code about the location of asset files in filesystem
575 $config['assets_dir'] = '';
576
577
2d08c5 578 // ----------------------------------
A 579 // PLUGINS
580 // ----------------------------------
581
582 // List of active plugins (in plugins/ directory)
acc005 583 $config['plugins'] = array();
2d08c5 584
A 585 // ----------------------------------
586 // USER INTERFACE
587 // ----------------------------------
588
f52c93 589 // default messages sort column. Use empty value for default server's sorting, 
e0efd8 590 // or 'arrival', 'date', 'subject', 'from', 'to', 'fromto', 'size', 'cc'
acc005 591 $config['message_sort_col'] = '';
2d08c5 592
f52c93 593 // default messages sort order
acc005 594 $config['message_sort_order'] = 'DESC';
2d08c5 595
A 596 // These cols are shown in the message list. Available cols are:
e0efd8 597 // subject, from, to, fromto, cc, replyto, date, size, status, flag, attachment, 'priority'
acc005 598 $config['list_cols'] = array('subject', 'status', 'fromto', 'date', 'size', 'flag', 'attachment');
2d08c5 599
c8ae24 600 // the default locale setting (leave empty for auto-detection)
T 601 // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
acc005 602 $config['language'] = null;
4e17e6 603
1cc9e2 604 // use this format for date display (date or strftime format)
acc005 605 $config['date_format'] = 'Y-m-d';
1cc9e2 606
T 607 // give this choice of date formats to the user to select from
b32fab 608 // Note: do not use ambiguous formats like m/d/Y
AM 609 $config['date_formats'] = array('Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y');
1cc9e2 610
T 611 // use this format for time display (date or strftime format)
acc005 612 $config['time_format'] = 'H:i';
1cc9e2 613
T 614 // give this choice of time formats to the user to select from
acc005 615 $config['time_formats'] = array('G:i', 'H:i', 'g:i a', 'h:i A');
1cc9e2 616
T 617 // use this format for short date display (derived from date_format and time_format)
acc005 618 $config['date_short'] = 'D H:i';
4e17e6 619
1cc9e2 620 // use this format for detailed date/time formatting (derived from date_format and time_format)
acc005 621 $config['date_long'] = 'Y-m-d H:i';
4e17e6 622
1966c5 623 // store draft message is this mailbox
S 624 // leave blank if draft messages should not be stored
d08333 625 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
acc005 626 $config['drafts_mbox'] = 'Drafts';
1966c5 627
b4b081 628 // store spam messages in this mailbox
d08333 629 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
acc005 630 $config['junk_mbox'] = 'Junk';
b4b081 631
4e17e6 632 // store sent message is this mailbox
T 633 // leave blank if sent messages should not be stored
d08333 634 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
acc005 635 $config['sent_mbox'] = 'Sent';
4e17e6 636
T 637 // move messages to this folder when deleting them
638 // leave blank if they should be deleted directly
d08333 639 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
acc005 640 $config['trash_mbox'] = 'Trash';
4e17e6 641
95ebcd 642 // automatically create the above listed default folders on first login
acc005 643 $config['create_default_folders'] = false;
b2ff3d 644
c8c1e0 645 // protect the default folders from renames, deletes, and subscription changes
acc005 646 $config['protect_default_folders'] = true;
c8c1e0 647
dc0b50 648 // Disable localization of the default folder names listed above
AM 649 $config['show_real_foldernames'] = false;
650
2d08c5 651 // if in your system 0 quota means no limit set this option to true 
acc005 652 $config['quota_zero_as_unlimited'] = false;
876b15 653
996066 654 // Make use of the built-in spell checker. It is based on GoogieSpell.
e9ac14 655 // Since Google only accepts connections over https your PHP installatation
T 656 // requires to be compiled with Open SSL support
acc005 657 $config['enable_spellcheck'] = true;
ed5d29 658
66df08 659 // Enables spellchecker exceptions dictionary.
A 660 // Setting it to 'shared' will make the dictionary shared by all users.
acc005 661 $config['spellcheck_dictionary'] = false;
66df08 662
b52166 663 // Set the spell checking engine. Possible values:
507dad 664 // - 'googie'  - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting)
b52166 665 // - 'pspell'  - requires the PHP Pspell module and aspell installed
TB 666 // - 'enchant' - requires the PHP Enchant module
667 // - 'atd'     - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API
507dad 668 // Since Google shut down their public spell checking service, the default settings
TB 669 // connect to http://spell.roundcube.net which is a hosted service provided by Roundcube.
670 // You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly.
acc005 671 $config['spellcheck_engine'] = 'googie';
5d2b7f 672
b52166 673 // For locally installed Nox Spell Server or After the Deadline services,
TB 674 // please specify the URI to call it.
675 // Get Nox Spell Server from http://orangoo.com/labs/?page_id=72 or
676 // the After the Deadline package from http://www.afterthedeadline.com.
677 // Leave empty to use the public API of service.afterthedeadline.com
acc005 678 $config['spellcheck_uri'] = '';
996066 679
T 680 // These languages can be selected for spell checking.
681 // Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
01a8c5 682 // Leave empty for default set of available language.
acc005 683 $config['spellcheck_languages'] = NULL;
996066 684
66df08 685 // Makes that words with all letters capitalized will be ignored (e.g. GOOGLE)
acc005 686 $config['spellcheck_ignore_caps'] = false;
66df08 687
A 688 // Makes that words with numbers will be ignored (e.g. g00gle)
acc005 689 $config['spellcheck_ignore_nums'] = false;
66df08 690
A 691 // Makes that words with symbols will be ignored (e.g. g@@gle)
acc005 692 $config['spellcheck_ignore_syms'] = false;
66df08 693
62c861 694 // Use this char/string to separate recipients when composing a new message
acc005 695 $config['recipients_separator'] = ',';
62c861 696
acf8d6 697 // Number of lines at the end of a message considered to contain the signature.
TB 698 // Increase this value if signatures are not properly detected and colored
699 $config['sig_max_lines'] = 15;
700
2d08c5 701 // don't let users set pagesize to more than this value if set
acc005 702 $config['max_pagesize'] = 200;
967b34 703
f22654 704 // Minimal value of user's 'refresh_interval' setting (in seconds)
acc005 705 $config['min_refresh_interval'] = 60;
2471d3 706
4171c5 707 // Enables files upload indicator. Requires APC installed and enabled apc.rfc1867 option.
A 708 // By default refresh time is set to 1 second. You can set this value to true
709 // or any integer value indicating number of seconds.
acc005 710 $config['upload_progress'] = false;
4171c5 711
63fda8 712 // Specifies for how many seconds the Undo button will be available
A 713 // after object delete action. Currently used with supporting address book sources.
714 // Setting it to 0, disables the feature.
acc005 715 $config['undo_timeout'] = 0;
63fda8 716
9c41ba 717 // A static list of canned responses which are immutable for the user
TB 718 $config['compose_responses_static'] = array(
719 //  array('name' => 'Canned Response 1', 'text' => 'Static Response One'),
720 //  array('name' => 'Canned Response 2', 'text' => 'Static Response Two'),
721 );
722
2d08c5 723 // ----------------------------------
A 724 // ADDRESSBOOK SETTINGS
725 // ----------------------------------
aec82b 726
6153e2 727 // This indicates which type of address book to use. Possible choises:
5526f9 728 // 'sql' (default), 'ldap' and ''.
6153e2 729 // If set to 'ldap' then it will look at using the first writable LDAP
4f9c83 730 // address book as the primary address book and it will not display the
S 731 // SQL address book in the 'Address Book' view.
5526f9 732 // If set to '' then no address book will be displayed or only the
JD 733 // addressbook which is created by a plugin (like CardDAV).
acc005 734 $config['address_book_type'] = 'sql';
4f9c83 735
S 736 // In order to enable public ldap search, configure an array like the Verisign
737 // example further below. if you would like to test, simply uncomment the example.
ecf295 738 // Array key must contain only safe characters, ie. a-zA-Z0-9_
acc005 739 $config['ldap_public'] = array();
5f25a1 740
4f9c83 741 // If you are going to use LDAP for individual address books, you will need to 
S 742 // set 'user_specific' to true and use the variables to generate the appropriate DNs to access it.
743 //
744 // The recommended directory structure for LDAP is to store all the address book entries
745 // under the users main entry, e.g.:
746 //
747 //  o=root
748 //   ou=people
749 //    uid=user@domain
3b9a53 750 //  mail=contact@contactdomain
T 751 //
4f9c83 752 // So the base_dn would be uid=%fu,ou=people,o=root
S 753 // The bind_dn would be the same as based_dn or some super user login.
3b9a53 754 /* 
f11541 755  * example config for Verisign directory
eea43f 756  *
acc005 757 $config['ldap_public']['Verisign'] = array(
3b9a53 758   'name'          => 'Verisign.com',
bb8721 759   // Replacement variables supported in host names:
A 760   // %h - user's IMAP hostname
d359dc 761   // %n - hostname ($_SERVER['SERVER_NAME'])
B 762   // %t - hostname without the first part
763   // %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
11be93 764   // %z - IMAP domain (IMAP hostname without the first part)
d359dc 765   // For example %n = mail.domain.tld, %t = domain.tld
3b9a53 766   'hosts'         => array('directory.verisign.com'),
T 767   'port'          => 389,
c64bee 768   'use_tls'       => false,
0c5210 769   'ldap_version'  => 3,       // using LDAPv3
e114a6 770   'network_timeout' => 10,    // The timeout (in seconds) for connect + bind arrempts. This is only supported in PHP >= 5.3.0 with OpenLDAP 2.x
3b9a53 771   'user_specific' => false,   // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login.
221b40 772   // When 'user_specific' is enabled following variables can be used in base_dn/bind_dn config:
3b9a53 773   // %fu - The full username provided, assumes the username is an email
T 774   //       address, uses the username_domain value if not an email address.
775   // %u  - The username prior to the '@'.
776   // %d  - The domain name after the '@'.
f76765 777   // %dc - The domain name hierarchal string e.g. "dc=test,dc=domain,dc=com"
1148c6 778   // %dn - DN found by ldap search when search_filter/search_base_dn are used
3b9a53 779   'base_dn'       => '',
T 780   'bind_dn'       => '',
781   'bind_pass'     => '',
1148c6 782   // It's possible to bind for an individual address book
A 783   // The login name is used to search for the DN to bind with
784   'search_base_dn' => '',
785   'search_filter'  => '',   // e.g. '(&(objectClass=posixAccount)(uid=%u))'
2d08ec 786   // DN and password to bind as before searching for bind DN, if anonymous search is not allowed
A 787   'search_bind_dn' => '',
788   'search_bind_pw' => '',
3ce7c5 789   // Optional map of replacement strings => attributes used when binding for an individual address book
TB 790   'search_bind_attrib' => array(),  // e.g. array('%udc' => 'ou')
c041d5 791   // Default for %dn variable if search doesn't return DN value
A 792   'search_dn_default' => '',
4d982d 793   // Optional authentication identifier to be used as SASL authorization proxy
A 794   // bind_dn need to be empty
795   'auth_cid'       => '',
796   // SASL authentication method (for proxy auth), e.g. DIGEST-MD5
797   'auth_method'    => '',
2d3e2b 798   // Indicates if the addressbook shall be hidden from the list.
5c9d1f 799   // With this option enabled you can still search/view contacts.
A 800   'hidden'        => false,
2d3e2b 801   // Indicates if the addressbook shall not list contacts but only allows searching.
T 802   'searchonly'    => false,
0c5210 803   // Indicates if we can write to the LDAP directory or not.
3b9a53 804   // If writable is true then these fields need to be populated:
T 805   // LDAP_Object_Classes, required_fields, LDAP_rdn
0c5210 806   'writable'       => false,
A 807   // To create a new contact these are the object classes to specify
808   // (or any other classes you wish to use).
809   'LDAP_Object_Classes' => array('top', 'inetOrgPerson'),
810   // The RDN field that is used for new entries, this field needs
811   // to be one of the search_fields, the base of base_dn is appended
812   // to the RDN to insert into the LDAP directory.
ca3d76 813   'LDAP_rdn'       => 'cn',
0c5210 814   // The required fields needed to build a new contact as required by
A 815   // the object classes (can include additional fields not required by the object classes).
816   'required_fields' => array('cn', 'sn', 'mail'),
817   'search_fields'   => array('mail', 'cn'),  // fields to search in
818   // mapping of contact fields to directory attributes
a605b2 819   //   for every attribute one can specify the number of values (limit) allowed.
T 820   //   default is 1, a wildcard * means unlimited
0c5210 821   'fieldmap' => array(
a605b2 822     // Roundcube  => LDAP:limit
0501b6 823     'name'        => 'cn',
T 824     'surname'     => 'sn',
825     'firstname'   => 'givenName',
b2c3c3 826     'jobtitle'    => 'title',
a605b2 827     'email'       => 'mail:*',
0501b6 828     'phone:home'  => 'homePhone',
T 829     'phone:work'  => 'telephoneNumber',
830     'phone:mobile' => 'mobile',
ca3d76 831     'phone:pager' => 'pager',
e43cc4 832     'phone:workfax' => 'facsimileTelephoneNumber',
0501b6 833     'street'      => 'street',
T 834     'zipcode'     => 'postalCode',
ca3d76 835     'region'      => 'st',
0501b6 836     'locality'    => 'l',
a605b2 837     // if you country is a complex object, you need to configure 'sub_fields' below
T 838     'country'      => 'c',
b563fc 839     'organization' => 'o',
a605b2 840     'department'   => 'ou',
T 841     'jobtitle'     => 'title',
842     'notes'        => 'description',
e43cc4 843     'photo'        => 'jpegPhoto',
a605b2 844     // these currently don't work:
T 845     // 'manager'       => 'manager',
846     // 'assistant'     => 'secretary',
0501b6 847   ),
a605b2 848   // Map of contact sub-objects (attribute name => objectClass(es)), e.g. 'c' => 'country'
T 849   'sub_fields' => array(),
3f250a 850   // Generate values for the following LDAP attributes automatically when creating a new record
TB 851   'autovalues' => array(
852   // 'uid'  => 'md5(microtime())',               // You may specify PHP code snippets which are then eval'ed 
853   // 'mail' => '{givenname}.{sn}@mydomain.com',  // or composite strings with placeholders for existing attributes
854   ),
a6d418 855   'sort'           => 'cn',         // The field to sort the listing by.
TB 856   'scope'          => 'sub',        // search mode: sub|base|list
857   'filter'         => '(objectClass=inetOrgPerson)',      // used for basic listing (if not empty) and will be &'d with search queries. example: status=act
858   'fuzzy_search'   => true,         // server allows wildcard search
859   'vlv'            => false,        // Enable Virtual List View to more efficiently fetch paginated data (if server supports it)
860   'vlv_search'     => false,        // Use Virtual List View functions for autocompletion searches (if server supports it)
861   'numsub_filter'  => '(objectClass=organizationalUnit)',   // with VLV, we also use numSubOrdinates to query the total number of records. Set this filter to get all numSubOrdinates attributes for counting
862   'config_root_dn' => 'cn=config',  // Root DN to search config entries (e.g. vlv indexes)
863   'sizelimit'      => '0',          // Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
864   'timelimit'      => '0',          // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
865   'referrals'      => false,        // Sets the LDAP_OPT_REFERRALS option. Mostly used in multi-domain Active Directory setups
d51900 866   'dereference'    => 0,            // Sets the LDAP_OPT_DEREF option. One of: LDAP_DEREF_NEVER, LDAP_DEREF_SEARCHING, LDAP_DEREF_FINDING, LDAP_DEREF_ALWAYS
AM 867                                     // Used where addressbook contains aliases to objects elsewhere in the LDAP tree.
d1e08f 868
T 869   // definition for contact groups (uncomment if no groups are supported)
870   // for the groups base_dn, the user replacements %fu, %u, $d and %dc work as for base_dn (see above)
871   // if the groups base_dn is empty, the contact base_dn is used for the groups as well
15d762 872   // -> in this case, assure that groups and contacts are separated due to the concernig filters! 
a6d418 873   'groups'  => array(
3ce7c5 874     'base_dn'           => '',
TB 875     'scope'             => 'sub',       // Search mode: sub|base|list
876     'filter'            => '(objectClass=groupOfNames)',
877     'object_classes'    => array('top', 'groupOfNames'),   // Object classes to be assigned to new groups
878     'member_attr'       => 'member',   // Name of the default member attribute, e.g. uniqueMember
879     'name_attr'         => 'cn',       // Attribute to be used as group name
880     'email_attr'        => 'mail',     // Group email address attribute (e.g. for mailing lists)
881     'member_filter'     => '(objectclass=*)',  // Optional filter to use when querying for group members
882     'vlv'               => false,      // Use VLV controls to list groups
883     'class_member_attr' => array(      // Mapping of group object class to member attribute used in these objects
884       'groupofnames'       => 'member',
885       'groupofuniquenames' => 'uniquemember'
886     ),
6039aa 887   ),
e43cc4 888   // this configuration replaces the regular groups listing in the directory tree with
TB 889   // a hard-coded list of groups, each listing entries with the configured base DN and filter.
890   // if the 'groups' option from above is set, it'll be shown as the first entry with the name 'Groups'
891   'group_filters' => array(
892     'departments' => array(
893       'name'    => 'Company Departments',
894       'scope'   => 'list',
895       'base_dn' => 'ou=Groups,dc=mydomain,dc=com',
896       'filter'  => '(|(objectclass=groupofuniquenames)(objectclass=groupofurls))',
9eaf68 897       'name_attr' => 'cn',
e43cc4 898     ),
TB 899     'customers' => array(
900       'name'    => 'Customers',
901       'scope'   => 'sub',
902       'base_dn' => 'ou=Customers,dc=mydomain,dc=com',
903       'filter'  => '(objectClass=inetOrgPerson)',
9eaf68 904       'name_attr' => 'sn',
e43cc4 905     ),
2c8e84 906   ),
T 907 );
908 */
c296b8 909
A 910 // An ordered array of the ids of the addressbooks that should be searched
911 // when populating address autocomplete fields server-side. ex: array('sql','Verisign');
acc005 912 $config['autocomplete_addressbooks'] = array('sql');
b19097 913
c296b8 914 // The minimum number of characters required to be typed in an autocomplete field
A 915 // before address books will be searched. Most useful for LDAP directories that
916 // may need to do lengthy results building given overly-broad searches
acc005 917 $config['autocomplete_min_length'] = 1;
c296b8 918
0213f8 919 // Number of parallel autocomplete requests.
A 920 // If there's more than one address book, n parallel (async) requests will be created,
921 // where each request will search in one address book. By default (0), all address
922 // books are searched in one request.
acc005 923 $config['autocomplete_threads'] = 0;
0213f8 924
A 925 // Max. numer of entries in autocomplete popup. Default: 15.
acc005 926 $config['autocomplete_max'] = 15;
0213f8 927
0501b6 928 // show address fields in this order
T 929 // available placeholders: {street}, {locality}, {zipcode}, {country}, {region}
acc005 930 $config['address_template'] = '{street}<br/>{locality} {zipcode}<br/>{country} {region}';
0501b6 931
f21a04 932 // Matching mode for addressbook search (including autocompletion)
A 933 // 0 - partial (*abc*), default
934 // 1 - strict (abc)
935 // 2 - prefix (abc*)
936 // Note: For LDAP sources fuzzy_search must be enabled to use 'partial' or 'prefix' mode
acc005 937 $config['addressbook_search_mode'] = 0;
f21a04 938
7c0411 939 // List of fields used on contacts list and for autocompletion searches
AM 940 // Warning: These are field names not LDAP attributes (see 'fieldmap' setting)!
941 $config['contactlist_fields'] = array('name', 'firstname', 'surname', 'email');
942
36d004 943 // Template of contact entry on the autocompletion list.
AM 944 // You can use contact fields as: name, email, organization, department, etc.
945 // See program/steps/addressbook/func.inc for a list
946 $config['contact_search_name'] = '{name} <{email}>';
947
2d08c5 948 // ----------------------------------
A 949 // USER PREFERENCES
950 // ----------------------------------
4e17e6 951
e55ab0 952 // Use this charset as fallback for message decoding
acc005 953 $config['default_charset'] = 'ISO-8859-1';
e55ab0 954
67effe 955 // skin name: folder from skins/
acc005 956 $config['skin'] = 'larry';
e58df3 957
3863a9 958 // Enables using standard browser windows (that can be handled as tabs)
AM 959 // instead of popup windows
acc005 960 $config['standard_windows'] = false;
3863a9 961
08ffd9 962 // show up to X items in messages list view
acc005 963 $config['mail_pagesize'] = 50;
08ffd9 964
A 965 // show up to X items in contacts list view
acc005 966 $config['addressbook_pagesize'] = 50;
4e17e6 967
438753 968 // sort contacts by this col (preferably either one of name, firstname, surname)
acc005 969 $config['addressbook_sort_col'] = 'surname';
438753 970
f9a967 971 // the way how contact names are displayed in the list
T 972 // 0: display name
973 // 1: (prefix) firstname middlename surname (suffix)
974 // 2: (prefix) surname firstname middlename (suffix)
975 // 3: (prefix) surname, firstname middlename (suffix)
acc005 976 $config['addressbook_name_listing'] = 0;
f9a967 977
4e17e6 978 // use this timezone to display date/time
5879c0 979 // valid timezone identifers are listed here: php.net/manual/en/timezones.php
T 980 // 'auto' will use the browser's timezone settings
acc005 981 $config['timezone'] = 'auto';
4647e1 982
4e17e6 983 // prefer displaying HTML messages
acc005 984 $config['prefer_html'] = true;
4e17e6 985
2a4135 986 // display remote inline images
A 987 // 0 - Never, always ask
988 // 1 - Ask if sender is not in address book
989 // 2 - Always show inline images
acc005 990 $config['show_images'] = 0;
712b30 991
271efe 992 // open messages in new window
acc005 993 $config['message_extwin'] = false;
271efe 994
TB 995 // open message compose form in new window
acc005 996 $config['compose_extwin'] = false;
271efe 997
b19097 998 // compose html formatted messages by default
8eefbb 999 // 0 - never, 1 - always, 2 - on reply to HTML message, 3 - on forward or reply to HTML message
acc005 1000 $config['htmleditor'] = 0;
b19097 1001
44b47d 1002 // save copies of compose messages in the browser's local storage
TB 1003 // for recovery in case of browser crashes and session timeout.
1004 $config['compose_save_localstorage'] = true;
1005
30233b 1006 // show pretty dates as standard
acc005 1007 $config['prettydate'] = true;
4e17e6 1008
d656f1 1009 // save compose message every 300 seconds (5min)
acc005 1010 $config['draft_autosave'] = 300;
0566ad 1011
b19097 1012 // default setting if preview pane is enabled
acc005 1013 $config['preview_pane'] = false;
b19097 1014
bc4960 1015 // Mark as read when viewed in preview pane (delay in seconds)
T 1016 // Set to -1 if messages in preview pane should not be marked as read
acc005 1017 $config['preview_pane_mark_read'] = 0;
bc4960 1018
eaa394 1019 // Clear Trash on logout
acc005 1020 $config['logout_purge'] = false;
eaa394 1021
A 1022 // Compact INBOX on logout
acc005 1023 $config['logout_expunge'] = false;
50c753 1024
166b61 1025 // Display attached images below the message body 
acc005 1026 $config['inline_images'] = true;
5e0045 1027
ffae15 1028 // Encoding of long/non-ascii attachment names:
A 1029 // 0 - Full RFC 2231 compatible
1030 // 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)
1031 // 2 - Full 2047 compatible
acc005 1032 $config['mime_param_folding'] = 1;
ffae15 1033
2d08c5 1034 // Set true if deleted messages should not be displayed
2b5852 1035 // This will make the application run slower
acc005 1036 $config['skip_deleted'] = false;
2b5852 1037
A 1038 // Set true to Mark deleted messages as read as well as deleted
1039 // False means that a message's read status is not affected by marking it as deleted
acc005 1040 $config['read_when_deleted'] = true;
2b5852 1041
ca8a17 1042 // Set to true to never delete messages immediately
A 1043 // Use 'Purge' to remove messages marked as deleted
acc005 1044 $config['flag_for_deletion'] = false;
2b5852 1045
aa8359 1046 // Default interval for auto-refresh requests (in seconds)
AM 1047 // These are requests for system state updates e.g. checking for new messages, etc.
1048 // Setting it to 0 disables the feature.
acc005 1049 $config['refresh_interval'] = 60;
95d90f 1050
2fd975 1051 // If true all folders will be checked for recent messages
acc005 1052 $config['check_all_folders'] = false;
2fd975 1053
e54bb7 1054 // If true, after message delete/move, the next message will be displayed
acc005 1055 $config['display_next'] = true;
e54bb7 1056
cd01dc 1057 // Default messages listing mode. One of 'threads' or 'list'.
AM 1058 $config['default_list_mode'] = 'list';
1059
1060 // 0 - Do not expand threads
1061 // 1 - Expand all threads automatically
1062 // 2 - Expand only threads with unread messages
acc005 1063 $config['autoexpand_threads'] = 0;
1cead0 1064
651c7b 1065 // When replying:
AM 1066 // -1 - don't cite the original message
1067 // 0  - place cursor below the original message
1068 // 1  - place cursor above original message (top posting)
acc005 1069 $config['reply_mode'] = 0;
50f56d 1070
0207c4 1071 // When replying strip original signature from message
acc005 1072 $config['strip_existing_sig'] = true;
0207c4 1073
50f56d 1074 // Show signature:
0207c4 1075 // 0 - Never
T 1076 // 1 - Always
50f56d 1077 // 2 - New messages only
0207c4 1078 // 3 - Forwards and Replies only
acc005 1079 $config['show_sig'] = 1;
0207c4 1080
ef595a 1081 // By default the signature is placed depending on cursor position (reply_mode).
AM 1082 // Sometimes it might be convenient to start the reply on top but keep
1083 // the signature below the quoted text (sig_below = true).
1084 $config['sig_below'] = false;
1085
47ad83 1086 // Use MIME encoding (quoted-printable) for 8bit characters in message body
acc005 1087 $config['force_7bit'] = false;
47ad83 1088
b975da 1089 // Defaults of the search field configuration.
T 1090 // The array can contain a per-folder list of header fields which should be considered when searching
1091 // The entry with key '*' stands for all folders which do not have a specific list set.
aecdf0 1092 // Please note that folder names should to be in sync with $config['*_mbox'] options
acc005 1093 $config['search_mods'] = null;  // Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1));
b975da 1094
3cacf9 1095 // Defaults of the addressbook search field configuration.
acc005 1096 $config['addressbook_search_mods'] = null;  // Example: array('name'=>1, 'firstname'=>1, 'surname'=>1, 'email'=>1, '*'=>1);
3cacf9 1097
b7f952 1098 // 'Delete always'
A 1099 // This setting reflects if mail should be always deleted
1100 // when moving to Trash fails. This is necessary in some setups
1101 // when user is over quota and Trash is included in the quota.
acc005 1102 $config['delete_always'] = false;
b7f952 1103
1b30a7 1104 // Directly delete messages in Junk instead of moving to Trash
acc005 1105 $config['delete_junk'] = false;
1b30a7 1106
f22ea7 1107 // Behavior if a received message requests a message delivery notification (read receipt)
A 1108 // 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask)
1109 // 3 = send automatically if sender is in addressbook, otherwise ask the user
1110 // 4 = send automatically if sender is in addressbook, otherwise ignore
acc005 1111 $config['mdn_requests'] = 0;
b25dfd 1112
f22ea7 1113 // Return receipt checkbox default state
acc005 1114 $config['mdn_default'] = 0;
f22ea7 1115
A 1116 // Delivery Status Notification checkbox default state
f1fba2 1117 // Note: This can be used only if smtp_server is non-empty
acc005 1118 $config['dsn_default'] = 0;
f22ea7 1119
eeb85f 1120 // Place replies in the folder of the message being replied to
acc005 1121 $config['reply_same_folder'] = false;
eeb85f 1122
a509bb 1123 // Sets default mode of Forward feature to "forward as attachment"
acc005 1124 $config['forward_attachment'] = false;
a509bb 1125
d73448 1126 // Defines address book (internal index) to which new contacts will be added
A 1127 // By default it is the first writeable addressbook.
1128 // Note: Use '0' for built-in address book.
acc005 1129 $config['default_addressbook'] = null;
d73448 1130
1d5779 1131 // Enables spell checking before sending a message.
acc005 1132 $config['spellcheck_before_send'] = false;
1d5779 1133
710b1b 1134 // Skip alternative email addresses in autocompletion (show one address per contact)
acc005 1135 $config['autocomplete_single'] = false;
710b1b 1136
7e263e 1137 // Default font for composed HTML message.
A 1138 // Supported values: Andale Mono, Arial, Arial Black, Book Antiqua, Courier New,
1139 // Georgia, Helvetica, Impact, Tahoma, Terminal, Times New Roman, Trebuchet MS, Verdana
acc005 1140 $config['default_font'] = 'Verdana';
7e263e 1141
7dff44 1142 // Default font size for composed HTML message.
D 1143 // Supported sizes: 8pt, 10pt, 12pt, 14pt, 18pt, 24pt, 36pt
189958 1144 $config['default_font_size'] = '10pt';
7dff44 1145
969cb0 1146 // Enables display of email address with name instead of a name (and address in title)
acc005 1147 $config['message_show_email'] = false;
b972b4 1148
AM 1149 // Default behavior of Reply-All button:
1150 // 0 - Reply-All always
1151 // 1 - Reply-List if mailing list is detected
1152 $config['reply_all_mode'] = 0;