alecpl
2011-07-05 9d195d6e82c3be4e543a47ef8ff1e9fe54bd0939
commit | author | age
4e17e6 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
5  | Main configuration file                                               |
6  |                                                                       |
e019f2 7  | This file is part of the Roundcube Webmail client                     |
f5e7b3 8  | Copyright (C) 2005-2010, The Roundcube Dev Team                       |
52c1f2 9  | Licensed under the GNU GPL                                            |
4e17e6 10  |                                                                       |
T 11  +-----------------------------------------------------------------------+
12
13 */
14
15 $rcmail_config = array();
16
2d08c5 17 // ----------------------------------
A 18 // LOGGING/DEBUGGING
19 // ----------------------------------
20
968bdc 21 // system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace
13c1af 22 $rcmail_config['debug_level'] = 1;
4e17e6 23
b77d0d 24 // log driver:  'syslog' or 'file'.
A 25 $rcmail_config['log_driver'] = 'file';
26
0ad27c 27 // date format for log entries
A 28 // (read http://php.net/manual/en/function.date.php for all format characters)  
29 $rcmail_config['log_date_format'] = 'd-M-Y H:i:s O';
30
b77d0d 31 // Syslog ident string to use, if using the 'syslog' log driver.
A 32 $rcmail_config['syslog_id'] = 'roundcube';
33
34 // Syslog facility to use, if using the 'syslog' log driver.
35 // For possible values see installer or http://php.net/manual/en/function.openlog.php
36 $rcmail_config['syslog_facility'] = LOG_USER;
37
3e3429 38 // Log sent messages to <log_dir>/sendmail or to syslog
2d08c5 39 $rcmail_config['smtp_log'] = true;
b77d0d 40
3e3429 41 // Log successful logins to <log_dir>/userlogins or to syslog
2d08c5 42 $rcmail_config['log_logins'] = false;
b77d0d 43
2d08c5 44 // Log SQL queries to <log_dir>/sql or to syslog
A 45 $rcmail_config['sql_debug'] = false;
cc97ea 46
2d08c5 47 // Log IMAP conversation to <log_dir>/imap or to syslog
A 48 $rcmail_config['imap_debug'] = false;
6dc026 49
2d08c5 50 // Log LDAP conversation to <log_dir>/ldap or to syslog
A 51 $rcmail_config['ldap_debug'] = false;
cc9570 52
2d08c5 53 // Log SMTP conversation to <log_dir>/smtp or to syslog
A 54 $rcmail_config['smtp_debug'] = false;
f5d61d 55
2d08c5 56 // ----------------------------------
A 57 // IMAP
58 // ----------------------------------
4e17e6 59
T 60 // the mail host chosen to perform the log-in
61 // leave blank to show a textbox at login, give a list of hosts
42b113 62 // to display a pulldown menu or set one host as string.
f86e8f 63 // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
bb8721 64 // Supported replacement variables:
A 65 // %n - http hostname ($_SERVER['SERVER_NAME'])
66 // %d - domain (http hostname without the first part)
b04c51 67 // %s - domain name after the '@' from e-mail address provided at login screen
bb8721 68 // For example %n = mail.domain.tld, %d = domain.tld
4e17e6 69 $rcmail_config['default_host'] = '';
T 70
42b113 71 // TCP port used for IMAP connections
T 72 $rcmail_config['default_port'] = 143;
73
4dd417 74 // IMAP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
A 75 // best server supported one)
b026c3 76 $rcmail_config['imap_auth_type'] = null;
T 77
00290a 78 // If you know your imap's folder delimiter, you can specify it here.
A 79 // Otherwise it will be determined automatically
030c84 80 $rcmail_config['imap_delimiter'] = null;
A 81
00290a 82 // If IMAP server doesn't support NAMESPACE extension, but you're
A 83 // using shared folders or personal root folder is non-empty, you'll need to
84 // set these options. All can be strings or arrays of strings.
e3af1f 85 // Folders need to be ended with directory separator, e.g. "INBOX."
A 86 // (special directory "~" is an exception to this rule)
02491a 87 // These can be used also to overwrite server's namespaces
00290a 88 $rcmail_config['imap_ns_personal'] = null;
A 89 $rcmail_config['imap_ns_other']    = null;
90 $rcmail_config['imap_ns_shared']   = null;
91
d8c440 92 // By default IMAP capabilities are readed after connection to IMAP server
A 93 // In some cases, e.g. when using IMAP proxy, there's a need to refresh the list
94 // after login. Set to True if you've got this case.
95 $rcmail_config['imap_force_caps'] = false;
96
f75f65 97 // By default list of subscribed folders is determined using LIST-EXTENDED
A 98 // extension if available. Some servers (dovecot 1.x) returns wrong results
99 // for shared namespaces in this case. http://trac.roundcube.net/ticket/1486225
100 // Enable this option to force LSUB command usage instead.
101 $rcmail_config['imap_force_lsub'] = false;
102
f07d23 103 // IMAP connection timeout, in seconds. Default: 0 (no limit)
A 104 $rcmail_config['imap_timeout'] = 0;
105
a1fe6b 106 // Optional IMAP authentication identifier to be used as authorization proxy
A 107 $rcmail_config['imap_auth_cid'] = null;
108
109 // Optional IMAP authentication password to be used for imap_auth_cid
110 $rcmail_config['imap_auth_pw'] = null;
111
8edb3d 112 // Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache'.
5cf5ee 113 $rcmail_config['imap_cache'] = null;
A 114
115 // Enables messages cache. Only 'db' cache is supported.
116 $rcmail_config['messages_cache'] = false;
117
118
2d08c5 119 // ----------------------------------
A 120 // SMTP
121 // ----------------------------------
f88d41 122
c3b676 123 // SMTP server host (for sending mails).
2d08c5 124 // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
c3b676 125 // If left blank, the PHP mail() function is used
bb8721 126 // Supported replacement variables:
A 127 // %h - user's IMAP hostname
128 // %n - http hostname ($_SERVER['SERVER_NAME'])
129 // %d - domain (http hostname without the first part)
11be93 130 // %z - IMAP domain (IMAP hostname without the first part)
bb8721 131 // For example %n = mail.domain.tld, %d = domain.tld
4e17e6 132 $rcmail_config['smtp_server'] = '';
T 133
fd8c50 134 // SMTP port (default is 25; 465 for SSL)
968bdc 135 $rcmail_config['smtp_port'] = 25;
T 136
e019f2 137 // SMTP username (if required) if you use %u as the username Roundcube
d206c1 138 // will use the current username for login
4e17e6 139 $rcmail_config['smtp_user'] = '';
T 140
e019f2 141 // SMTP password (if required) if you use %p as the password Roundcube
d206c1 142 // will use the current user's password for login
4e17e6 143 $rcmail_config['smtp_pass'] = '';
T 144
d206c1 145 // SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
S 146 // best server supported one)
147 $rcmail_config['smtp_auth_type'] = '';
148
63d4d6 149 // Optional SMTP authentication identifier to be used as authorization proxy
A 150 $rcmail_config['smtp_auth_cid'] = null;
151
a1fe6b 152 // Optional SMTP authentication password to be used for smtp_auth_cid
63d4d6 153 $rcmail_config['smtp_auth_pw'] = null;
a39212 154
aca3d2 155 // SMTP HELO host 
S 156 // Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages 
157 // Leave this blank and you will get the server variable 'server_name' or 
158 // localhost if that isn't defined. 
159 $rcmail_config['smtp_helo_host'] = '';
160
f07d23 161 // SMTP connection timeout, in seconds. Default: 0 (no limit)
A 162 $rcmail_config['smtp_timeout'] = 0;
163
2d08c5 164 // ----------------------------------
A 165 // SYSTEM
166 // ----------------------------------
64608b 167
2d08c5 168 // THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA.
A 169 // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING!
170 $rcmail_config['enable_installer'] = false;
4e17e6 171
2d08c5 172 // use this folder to store log files (must be writeable for apache user)
A 173 // This is used by the 'file' log driver.
174 $rcmail_config['log_dir'] = 'logs/';
d559cb 175
2d08c5 176 // use this folder to store temp files (must be writeable for apache user)
A 177 $rcmail_config['temp_dir'] = 'temp/';
010274 178
2d08c5 179 // lifetime of message cache
A 180 // possible units: s, m, h, d, w
181 $rcmail_config['message_cache_lifetime'] = '10d';
19862b 182
2d08c5 183 // enforce connections over https
A 184 // with this option enabled, all non-secure connections will be redirected.
185 // set the port for the ssl connection as value of this option if it differs from the default 443
186 $rcmail_config['force_https'] = false;
acb08f 187
00e18b 188 // tell PHP that it should work as under secure connection
A 189 // even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set)
190 // e.g. when you're running Roundcube behind a https proxy
191 $rcmail_config['use_https'] = false;
192
1cca4f 193 // Allow browser-autocompletion on login form.
A 194 // 0 - disabled, 1 - username and host only, 2 - username, host, password
195 $rcmail_config['login_autocomplete'] = 0;
fbe24e 196
e17553 197 // If users authentication is not case sensitive this must be enabled.
A 198 // You can also use it to force conversion of logins to lower case.
caedd5 199 // After enabling it all user records need to be updated, e.g. with query:
A 200 // UPDATE users SET username = LOWER(username);
e17553 201 $rcmail_config['login_lc'] = false;
A 202
e019f2 203 // automatically create a new Roundcube user when log-in the first time.
2d08c5 204 // a new user will be created once the IMAP login succeeds.
A 205 // set to false if only registered users can use this service
206 $rcmail_config['auto_create_user'] = true;
4e17e6 207
ae39c4 208 // replace Roundcube logo with this image
T 209 // specify an URL relative to the document root of this Roundcube installation
210 $rcmail_config['skin_logo'] = null;
211
95d90f 212 // Includes should be interpreted as PHP files
2d08c5 213 $rcmail_config['skin_include_php'] = false;
fd8c50 214
95d90f 215 // Session lifetime in minutes
A 216 // must be greater than 'keep_alive'/60
7902df 217 $rcmail_config['session_lifetime'] = 10;
T 218
cf2da2 219 // session domain: .example.org
T 220 $rcmail_config['session_domain'] = '';
221
63e992 222 // Backend to use for session storage. Can either be 'db' (default) or 'memcache'
T 223 // If set to memcache, a list of servers need to be specified in 'memcache_hosts'
224 // Make sure the Memcache extension (http://pecl.php.net/package/memcache) version >= 2.0.0 is installed
225 $rcmail_config['session_storage'] = 'db';
226
227 // Use these hosts for accessing memcached
228 // Define any number of hosts in the form hostname:port
229 $rcmail_config['memcache_hosts'] = null; // e.g. array( 'localhost:11211', '192.168.1.12:11211' );
230
4e17e6 231 // check client IP in session athorization
aad6e2 232 $rcmail_config['ip_check'] = false;
4e17e6 233
a77cf2 234 // check referer of incoming requests
T 235 $rcmail_config['referer_check'] = false;
236
bac7d1 237 // this key is used to encrypt the users imap password which is stored
T 238 // in the session record (and the client cookie if remember password is enabled).
239 // please provide a string of exactly 24 chars.
240 $rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str';
241
2d08c5 242 // Automatically add this domain to user names for login
A 243 // Only for IMAP servers that require full e-mail addresses for login
244 // Specify an array with 'host' => 'domain' values to support multiple hosts
6a642d 245 // Supported replacement variables:
A 246 // %h - user's IMAP hostname
247 // %n - http hostname ($_SERVER['SERVER_NAME'])
248 // %d - domain (http hostname without the first part)
11be93 249 // %z - IMAP domain (IMAP hostname without the first part)
6a642d 250 // For example %n = mail.domain.tld, %d = domain.tld
2d08c5 251 $rcmail_config['username_domain'] = '';
A 252
253 // This domain will be used to form e-mail addresses of new users
254 // Specify an array with 'host' => 'domain' values to support multiple hosts
bb8721 255 // Supported replacement variables:
A 256 // %h - user's IMAP hostname
257 // %n - http hostname ($_SERVER['SERVER_NAME'])
258 // %d - domain (http hostname without the first part)
11be93 259 // %z - IMAP domain (IMAP hostname without the first part)
bb8721 260 // For example %n = mail.domain.tld, %d = domain.tld
2d08c5 261 $rcmail_config['mail_domain'] = '';
A 262
263 // Password charset.
264 // Use it if your authentication backend doesn't support UTF-8.
265 // Defaults to ISO-8859-1 for backward compatibility
266 $rcmail_config['password_charset'] = 'ISO-8859-1';
267
268 // How many seconds must pass between emails sent by a user
269 $rcmail_config['sendmail_delay'] = 0;
270
751b22 271 // Maximum number of recipients per message. Default: 0 (no limit)
A 272 $rcmail_config['max_recipients'] = 0; 
273
d1851b 274 // Maximum allowednumber of members of an address group. Default: 0 (no limit)
T 275 // If 'max_recipients' is set this value should be less or equal
276 $rcmail_config['max_group_members'] = 0; 
277
2d08c5 278 // add this user-agent to message headers when sending
6b6f2e 279 $rcmail_config['useragent'] = 'Roundcube Webmail/'.RCMAIL_VERSION;
2d08c5 280
A 281 // use this name to compose page titles
6b6f2e 282 $rcmail_config['product_name'] = 'Roundcube Webmail';
2d08c5 283
A 284 // try to load host-specific configuration
285 // see http://trac.roundcube.net/wiki/Howto_Config for more details
286 $rcmail_config['include_host_config'] = false;
287
288 // path to a text file which will be added to each sent message
e019f2 289 // paths are relative to the Roundcube root folder
2d08c5 290 $rcmail_config['generic_message_footer'] = '';
A 291
5852c1 292 // path to a text file which will be added to each sent HTML message
e019f2 293 // paths are relative to the Roundcube root folder
5852c1 294 $rcmail_config['generic_message_footer_html'] = '';
A 295
2d08c5 296 // add a received header to outgoing mails containing the creators IP and hostname
A 297 $rcmail_config['http_received_header'] = false;
298
299 // Whether or not to encrypt the IP address and the host name
300 // these could, in some circles, be considered as sensitive information;
301 // however, for the administrator, these could be invaluable help
302 // when tracking down issues.
303 $rcmail_config['http_received_header_encrypt'] = false;
304
ac8edb 305 // This string is used as a delimiter for message headers when sending
A 306 // a message via mail() function. Leave empty for auto-detection
2d08c5 307 $rcmail_config['mail_header_delimiter'] = NULL;
A 308
6b6f2e 309 // number of chars allowed for line when wrapping text.
T 310 // text wrapping is done when composing/sending messages
c769c6 311 $rcmail_config['line_length'] = 72;
6b6f2e 312
T 313 // send plaintext messages as format=flowed
314 $rcmail_config['send_format_flowed'] = true;
2d08c5 315
A 316 // don't allow these settings to be overriden by the user
317 $rcmail_config['dont_override'] = array();
318
319 // Set identities access level:
320 // 0 - many identities with possibility to edit all params
321 // 1 - many identities with possibility to edit all params but not email address
322 // 2 - one identity with possibility to edit all params
323 // 3 - one identity with possibility to edit all params but not email address
324 $rcmail_config['identities_level'] = 0;
325
326 // mime magic database
327 $rcmail_config['mime_magic'] = '/usr/share/misc/magic';
328
0501b6 329 // path to imagemagick identify binary
T 330 $rcmail_config['im_identify_path'] = null;
331
332 // path to imagemagick convert binary
333 $rcmail_config['im_convert_path'] = null;
334
335 // maximum size of uploaded contact photos in pixel
336 $rcmail_config['contact_photo_size'] = 160;
337
2d08c5 338 // Enable DNS checking for e-mail address validation
A 339 $rcmail_config['email_dns_check'] = false;
340
341 // ----------------------------------
342 // PLUGINS
343 // ----------------------------------
344
345 // List of active plugins (in plugins/ directory)
346 $rcmail_config['plugins'] = array();
347
348 // ----------------------------------
349 // USER INTERFACE
350 // ----------------------------------
351
f52c93 352 // default messages sort column. Use empty value for default server's sorting, 
T 353 // or 'arrival', 'date', 'subject', 'from', 'to', 'size', 'cc'
354 $rcmail_config['message_sort_col'] = '';
2d08c5 355
f52c93 356 // default messages sort order
2d08c5 357 $rcmail_config['message_sort_order'] = 'DESC';
A 358
359 // These cols are shown in the message list. Available cols are:
4438d6 360 // subject, from, to, cc, replyto, date, size, status, flag, attachment
A 361 $rcmail_config['list_cols'] = array('subject', 'status', 'from', 'date', 'size', 'flag', 'attachment');
2d08c5 362
c8ae24 363 // the default locale setting (leave empty for auto-detection)
T 364 // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
365 $rcmail_config['language'] = null;
4e17e6 366
b6b593 367 // use this format for short date display (date or strftime format)
4e17e6 368 $rcmail_config['date_short'] = 'D H:i';
T 369
b6b593 370 // use this format for detailed date/time formatting (date or strftime format)
4e17e6 371 $rcmail_config['date_long'] = 'd.m.Y H:i';
T 372
b6b593 373 // use this format for today's date display (date or strftime format)
c5dedd 374 // Note: $ character will be replaced with 'Today' label
8c8b2a 375 $rcmail_config['date_today'] = 'H:i';
0501b6 376
T 377 // use this format for date display without time (date or strftime format)
378 $rcmail_config['date_format'] = 'Y-m-d';
4e17e6 379
1966c5 380 // store draft message is this mailbox
S 381 // leave blank if draft messages should not be stored
d08333 382 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
1966c5 383 $rcmail_config['drafts_mbox'] = 'Drafts';
S 384
b4b081 385 // store spam messages in this mailbox
d08333 386 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
b4b081 387 $rcmail_config['junk_mbox'] = 'Junk';
S 388
4e17e6 389 // store sent message is this mailbox
T 390 // leave blank if sent messages should not be stored
d08333 391 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
4e17e6 392 $rcmail_config['sent_mbox'] = 'Sent';
T 393
394 // move messages to this folder when deleting them
395 // leave blank if they should be deleted directly
d08333 396 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
4e17e6 397 $rcmail_config['trash_mbox'] = 'Trash';
T 398
fa4cd2 399 // display these folders separately in the mailbox list.
83ce4b 400 // these folders will also be displayed with localized names
d08333 401 // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
4e17e6 402 $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
T 403
b2ff3d 404 // automatically create the above listed default folders on login
2d08c5 405 $rcmail_config['create_default_folders'] = false;
b2ff3d 406
c8c1e0 407 // protect the default folders from renames, deletes, and subscription changes
2d08c5 408 $rcmail_config['protect_default_folders'] = true;
c8c1e0 409
2d08c5 410 // if in your system 0 quota means no limit set this option to true 
A 411 $rcmail_config['quota_zero_as_unlimited'] = false;
876b15 412
996066 413 // Make use of the built-in spell checker. It is based on GoogieSpell.
e9ac14 414 // Since Google only accepts connections over https your PHP installatation
T 415 // requires to be compiled with Open SSL support
2d08c5 416 $rcmail_config['enable_spellcheck'] = true;
ed5d29 417
5d2b7f 418 // Set the spell checking engine. 'googie' is the default. 'pspell' is also available,
T 419 // but requires the Pspell extensions. When using Nox Spell Server, also set 'googie' here.
420 $rcmail_config['spellcheck_engine'] = 'googie';
421
996066 422 // For a locally installed Nox Spell Server, please specify the URI to call it.
T 423 // Get Nox Spell Server from http://orangoo.com/labs/?page_id=72
424 // Leave empty to use the Google spell checking service, what means
425 // that the message content will be sent to Google in order to check spelling
426 $rcmail_config['spellcheck_uri'] = '';
427
428 // These languages can be selected for spell checking.
429 // Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
01a8c5 430 // Leave empty for default set of available language.
996066 431 $rcmail_config['spellcheck_languages'] = NULL;
T 432
2d08c5 433 // don't let users set pagesize to more than this value if set
A 434 $rcmail_config['max_pagesize'] = 200;
967b34 435
2d08c5 436 // Minimal value of user's 'keep_alive' setting (in seconds)
A 437 // Must be less than 'session_lifetime'
438 $rcmail_config['min_keep_alive'] = 60;
2471d3 439
4171c5 440 // Enables files upload indicator. Requires APC installed and enabled apc.rfc1867 option.
A 441 // By default refresh time is set to 1 second. You can set this value to true
442 // or any integer value indicating number of seconds.
443 $rcmail_config['upload_progress'] = false;
444
2d08c5 445 // ----------------------------------
A 446 // ADDRESSBOOK SETTINGS
447 // ----------------------------------
aec82b 448
6153e2 449 // This indicates which type of address book to use. Possible choises:
A 450 // 'sql' (default) and 'ldap'.
451 // If set to 'ldap' then it will look at using the first writable LDAP
4f9c83 452 // address book as the primary address book and it will not display the
S 453 // SQL address book in the 'Address Book' view.
6153e2 454 $rcmail_config['address_book_type'] = 'sql';
4f9c83 455
S 456 // In order to enable public ldap search, configure an array like the Verisign
457 // example further below. if you would like to test, simply uncomment the example.
ecf295 458 // Array key must contain only safe characters, ie. a-zA-Z0-9_
5f25a1 459 $rcmail_config['ldap_public'] = array();
T 460
4f9c83 461 // If you are going to use LDAP for individual address books, you will need to 
S 462 // set 'user_specific' to true and use the variables to generate the appropriate DNs to access it.
463 //
464 // The recommended directory structure for LDAP is to store all the address book entries
465 // under the users main entry, e.g.:
466 //
467 //  o=root
468 //   ou=people
469 //    uid=user@domain
3b9a53 470 //  mail=contact@contactdomain
T 471 //
4f9c83 472 // So the base_dn would be uid=%fu,ou=people,o=root
S 473 // The bind_dn would be the same as based_dn or some super user login.
3b9a53 474 /* 
f11541 475  * example config for Verisign directory
eea43f 476  *
3b9a53 477 $rcmail_config['ldap_public']['Verisign'] = array(
T 478   'name'          => 'Verisign.com',
bb8721 479   // Replacement variables supported in host names:
A 480   // %h - user's IMAP hostname
481   // %n - http hostname ($_SERVER['SERVER_NAME'])
482   // %d - domain (http hostname without the first part)
11be93 483   // %z - IMAP domain (IMAP hostname without the first part)
bb8721 484   // For example %n = mail.domain.tld, %d = domain.tld
3b9a53 485   'hosts'         => array('directory.verisign.com'),
T 486   'port'          => 389,
1148c6 487   'use_tls'          => false,
0c5210 488   'ldap_version'  => 3,       // using LDAPv3
3b9a53 489   'user_specific' => false,   // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login.
T 490   // %fu - The full username provided, assumes the username is an email
491   //       address, uses the username_domain value if not an email address.
492   // %u  - The username prior to the '@'.
493   // %d  - The domain name after the '@'.
f76765 494   // %dc - The domain name hierarchal string e.g. "dc=test,dc=domain,dc=com"
1148c6 495   // %dn - DN found by ldap search when search_filter/search_base_dn are used
3b9a53 496   'base_dn'       => '',
T 497   'bind_dn'       => '',
498   'bind_pass'     => '',
1148c6 499   // It's possible to bind for an individual address book
A 500   // The login name is used to search for the DN to bind with
501   'search_base_dn' => '',
502   'search_filter'  => '',   // e.g. '(&(objectClass=posixAccount)(uid=%u))'
4d982d 503   // Optional authentication identifier to be used as SASL authorization proxy
A 504   // bind_dn need to be empty
505   'auth_cid'       => '',
506   // SASL authentication method (for proxy auth), e.g. DIGEST-MD5
507   'auth_method'    => '',
0c5210 508   // Indicates if we can write to the LDAP directory or not.
3b9a53 509   // If writable is true then these fields need to be populated:
T 510   // LDAP_Object_Classes, required_fields, LDAP_rdn
0c5210 511   'writable'       => false,
A 512   // To create a new contact these are the object classes to specify
513   // (or any other classes you wish to use).
514   'LDAP_Object_Classes' => array('top', 'inetOrgPerson'),
515   // The RDN field that is used for new entries, this field needs
516   // to be one of the search_fields, the base of base_dn is appended
517   // to the RDN to insert into the LDAP directory.
518   'LDAP_rdn'       => 'mail',
519   // The required fields needed to build a new contact as required by
520   // the object classes (can include additional fields not required by the object classes).
521   'required_fields' => array('cn', 'sn', 'mail'),
522   'search_fields'   => array('mail', 'cn'),  // fields to search in
523   // mapping of contact fields to directory attributes
524   'fieldmap' => array(
0501b6 525     // Roundcube  => LDAP
T 526     'name'        => 'cn',
527     'surname'     => 'sn',
528     'firstname'   => 'givenName',
529     'email'       => 'mail',
530     'phone:home'  => 'homePhone',
531     'phone:work'  => 'telephoneNumber',
532     'phone:mobile' => 'mobile',
533     'street'      => 'street',
534     'zipcode'     => 'postalCode',
535     'locality'    => 'l',
536     'country'     => 'c',
537     'organization' => 'o',
538   ),
3b9a53 539   'sort'          => 'cn',    // The field to sort the listing by.
T 540   'scope'         => 'sub',   // search mode: sub|base|list
d1e08f 541   'filter'        => '(objectClass=inetOrgPerson)',      // used for basic listing (if not empty) and will be &'d with search queries. example: status=act
650601 542   'fuzzy_search'  => true,    // server allows wildcard search
15d762 543   'vlv'           => false,   // Enable Virtual List View to more efficiently fetch paginated data (if server supports it)
6af7e0 544   '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
6039aa 545   'sizelimit'     => '0',     // Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
T 546   'timelimit'     => '0',     // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
d1e08f 547
T 548   // definition for contact groups (uncomment if no groups are supported)
549   // for the groups base_dn, the user replacements %fu, %u, $d and %dc work as for base_dn (see above)
550   // if the groups base_dn is empty, the contact base_dn is used for the groups as well
15d762 551   // -> in this case, assure that groups and contacts are separated due to the concernig filters! 
6039aa 552   'groups'        => array(
d1e08f 553     'base_dn'     => '',   
6039aa 554     'filter'      => '(objectClass=groupOfNames)',
d1e08f 555     'object_classes' => array("top", "groupOfNames"),
6039aa 556   ),
93c018 557 );
3b9a53 558 */
d1d2c4 559
2c8e84 560 // An ordered array of the ids of the addressbooks that should be searched
T 561 // when populating address autocomplete fields server-side. ex: array('sql','Verisign');
562 $rcmail_config['autocomplete_addressbooks'] = array('sql');
563
c296b8 564 // The minimum number of characters required to be typed in an autocomplete field
A 565 // before address books will be searched. Most useful for LDAP directories that
566 // may need to do lengthy results building given overly-broad searches
567 $rcmail_config['autocomplete_min_length'] = 1;
568
0501b6 569 // show address fields in this order
T 570 // available placeholders: {street}, {locality}, {zipcode}, {country}, {region}
571 $rcmail_config['address_template'] = '{street}<br/>{locality} {zipcode}<br/>{country} {region}';
572
2d08c5 573 // ----------------------------------
A 574 // USER PREFERENCES
575 // ----------------------------------
4e17e6 576
e55ab0 577 // Use this charset as fallback for message decoding
A 578 $rcmail_config['default_charset'] = 'ISO-8859-1';
579
67effe 580 // skin name: folder from skins/
A 581 $rcmail_config['skin'] = 'default';
e58df3 582
4e17e6 583 // show up to X items in list view
T 584 $rcmail_config['pagesize'] = 40;
585
586 // use this timezone to display date/time
c8ae24 587 $rcmail_config['timezone'] = 'auto';
4e17e6 588
5349b7 589 // is daylight saving On?
d7d663 590 $rcmail_config['dst_active'] = (bool)date('I');
4647e1 591
4e17e6 592 // prefer displaying HTML messages
2d08c5 593 $rcmail_config['prefer_html'] = true;
4e17e6 594
2a4135 595 // display remote inline images
A 596 // 0 - Never, always ask
597 // 1 - Ask if sender is not in address book
598 // 2 - Always show inline images
599 $rcmail_config['show_images'] = 0;
712b30 600
b19097 601 // compose html formatted messages by default
868deb 602 // 0 - never, 1 - always, 2 - on reply to HTML message only 
A 603 $rcmail_config['htmleditor'] = 0;
b19097 604
30233b 605 // show pretty dates as standard
2d08c5 606 $rcmail_config['prettydate'] = true;
4e17e6 607
d656f1 608 // save compose message every 300 seconds (5min)
T 609 $rcmail_config['draft_autosave'] = 300;
0566ad 610
b19097 611 // default setting if preview pane is enabled
2d08c5 612 $rcmail_config['preview_pane'] = false;
b19097 613
bc4960 614 // Mark as read when viewed in preview pane (delay in seconds)
T 615 // Set to -1 if messages in preview pane should not be marked as read
616 $rcmail_config['preview_pane_mark_read'] = 0;
617
eaa394 618 // Clear Trash on logout
2d08c5 619 $rcmail_config['logout_purge'] = false;
eaa394 620
A 621 // Compact INBOX on logout
2d08c5 622 $rcmail_config['logout_expunge'] = false;
50c753 623
166b61 624 // Display attached images below the message body 
2d08c5 625 $rcmail_config['inline_images'] = true;
5e0045 626
ffae15 627 // Encoding of long/non-ascii attachment names:
A 628 // 0 - Full RFC 2231 compatible
629 // 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)
630 // 2 - Full 2047 compatible
21c277 631 $rcmail_config['mime_param_folding'] = 1;
ffae15 632
2d08c5 633 // Set true if deleted messages should not be displayed
2b5852 634 // This will make the application run slower
2d08c5 635 $rcmail_config['skip_deleted'] = false;
2b5852 636
A 637 // Set true to Mark deleted messages as read as well as deleted
638 // False means that a message's read status is not affected by marking it as deleted
2d08c5 639 $rcmail_config['read_when_deleted'] = true;
2b5852 640
2d08c5 641 // Set to true to newer delete messages immediately
119cd1 642 // Use 'Purge' to remove messages marked as deleted 
2d08c5 643 $rcmail_config['flag_for_deletion'] = false;
2b5852 644
95d90f 645 // Default interval for keep-alive/check-recent requests (in seconds)
A 646 // Must be greater than or equal to 'min_keep_alive' and less than 'session_lifetime'
647 $rcmail_config['keep_alive'] = 60;
648
2fd975 649 // If true all folders will be checked for recent messages
2d08c5 650 $rcmail_config['check_all_folders'] = false;
2fd975 651
e54bb7 652 // If true, after message delete/move, the next message will be displayed
2d08c5 653 $rcmail_config['display_next'] = false;
e54bb7 654
f52c93 655 // 0 - Do not expand threads 
T 656 // 1 - Expand all threads automatically 
657 // 2 - Expand only threads with unread messages 
658 $rcmail_config['autoexpand_threads'] = 0;
1cead0 659
50f56d 660 // When replying place cursor above original message (top posting)
2d08c5 661 $rcmail_config['top_posting'] = false;
50f56d 662
0207c4 663 // When replying strip original signature from message
2d08c5 664 $rcmail_config['strip_existing_sig'] = true;
0207c4 665
50f56d 666 // Show signature:
0207c4 667 // 0 - Never
T 668 // 1 - Always
50f56d 669 // 2 - New messages only
0207c4 670 // 3 - Forwards and Replies only
T 671 $rcmail_config['show_sig'] = 1;
672
673 // When replying or forwarding place sender's signature above existing message
2d08c5 674 $rcmail_config['sig_above'] = false;
50f56d 675
47ad83 676 // Use MIME encoding (quoted-printable) for 8bit characters in message body
2d08c5 677 $rcmail_config['force_7bit'] = false;
47ad83 678
b975da 679 // Defaults of the search field configuration.
T 680 // The array can contain a per-folder list of header fields which should be considered when searching
681 // The entry with key '*' stands for all folders which do not have a specific list set.
682 // Please note that folder names should to be in sync with $rcmail_config['default_imap_folders']
683 $rcmail_config['search_mods'] = null;  // Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1));
684
3cacf9 685 // Defaults of the addressbook search field configuration.
A 686 $rcmail_config['addressbook_search_mods'] = null;  // Example: array('name'=>1, 'firstname'=>1, 'surname'=>1, 'email'=>1, '*'=>1);
687
b7f952 688 // 'Delete always'
A 689 // This setting reflects if mail should be always deleted
690 // when moving to Trash fails. This is necessary in some setups
691 // when user is over quota and Trash is included in the quota.
692 $rcmail_config['delete_always'] = false;
693
f22ea7 694 // Behavior if a received message requests a message delivery notification (read receipt)
A 695 // 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask)
696 // 3 = send automatically if sender is in addressbook, otherwise ask the user
697 // 4 = send automatically if sender is in addressbook, otherwise ignore
698 $rcmail_config['mdn_requests'] = 0;
b25dfd 699
f22ea7 700 // Return receipt checkbox default state
A 701 $rcmail_config['mdn_default'] = 0;
702
703 // Delivery Status Notification checkbox default state
704 $rcmail_config['dsn_default'] = 0;
705
eeb85f 706 // Place replies in the folder of the message being replied to
A 707 $rcmail_config['reply_same_folder'] = false;
708
a509bb 709 // Sets default mode of Forward feature to "forward as attachment"
A 710 $rcmail_config['forward_attachment'] = false;
711
d73448 712 // Defines address book (internal index) to which new contacts will be added
A 713 // By default it is the first writeable addressbook.
714 // Note: Use '0' for built-in address book.
715 $rcmail_config['default_addressbook'] = null;
716
1d5779 717 // Enables spell checking before sending a message.
A 718 $rcmail_config['spellcheck_before_send'] = false;
719
f22ea7 720 // end of config file