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