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