| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | /* |
|---|
| 4 | +-----------------------------------------------------------------------+ |
|---|
| 5 | | Main configuration file | |
|---|
| 6 | | | |
|---|
| 7 | | This file is part of the RoundCube Webmail client | |
|---|
| 8 | | Copyright (C) 2005-2010, RoundCube Dev. - Switzerland | |
|---|
| 9 | | Licensed under the GNU GPL | |
|---|
| 10 | | | |
|---|
| 11 | +-----------------------------------------------------------------------+ |
|---|
| 12 | |
|---|
| 13 | */ |
|---|
| 14 | |
|---|
| 15 | $rcmail_config = array(); |
|---|
| 16 | |
|---|
| 17 | // ---------------------------------- |
|---|
| 18 | // LOGGING/DEBUGGING |
|---|
| 19 | // ---------------------------------- |
|---|
| 20 | |
|---|
| 21 | // system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace |
|---|
| 22 | $rcmail_config['debug_level'] = 1; |
|---|
| 23 | |
|---|
| 24 | // log driver: 'syslog' or 'file'. |
|---|
| 25 | $rcmail_config['log_driver'] = 'file'; |
|---|
| 26 | |
|---|
| 27 | // date format for log entries |
|---|
| 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 | |
|---|
| 31 | // Syslog ident string to use, if using the 'syslog' log driver. |
|---|
| 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 | |
|---|
| 38 | // Log sent messages to <log_dir>/sendmail or to syslog |
|---|
| 39 | $rcmail_config['smtp_log'] = true; |
|---|
| 40 | |
|---|
| 41 | // Log successful logins to <log_dir>/userlogins or to syslog |
|---|
| 42 | $rcmail_config['log_logins'] = false; |
|---|
| 43 | |
|---|
| 44 | // Log SQL queries to <log_dir>/sql or to syslog |
|---|
| 45 | $rcmail_config['sql_debug'] = false; |
|---|
| 46 | |
|---|
| 47 | // Log IMAP conversation to <log_dir>/imap or to syslog |
|---|
| 48 | $rcmail_config['imap_debug'] = false; |
|---|
| 49 | |
|---|
| 50 | // Log LDAP conversation to <log_dir>/ldap or to syslog |
|---|
| 51 | $rcmail_config['ldap_debug'] = false; |
|---|
| 52 | |
|---|
| 53 | // Log SMTP conversation to <log_dir>/smtp or to syslog |
|---|
| 54 | $rcmail_config['smtp_debug'] = false; |
|---|
| 55 | |
|---|
| 56 | // ---------------------------------- |
|---|
| 57 | // IMAP |
|---|
| 58 | // ---------------------------------- |
|---|
| 59 | |
|---|
| 60 | // the mail host chosen to perform the log-in |
|---|
| 61 | // leave blank to show a textbox at login, give a list of hosts |
|---|
| 62 | // to display a pulldown menu or set one host as string. |
|---|
| 63 | // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls:// |
|---|
| 64 | $rcmail_config['default_host'] = ''; |
|---|
| 65 | |
|---|
| 66 | // TCP port used for IMAP connections |
|---|
| 67 | $rcmail_config['default_port'] = 143; |
|---|
| 68 | |
|---|
| 69 | // IMAP auth type. Can be "auth" (CRAM-MD5), "plain" (PLAIN) or "check" to auto detect. |
|---|
| 70 | // Optional, defaults to "check" |
|---|
| 71 | $rcmail_config['imap_auth_type'] = null; |
|---|
| 72 | |
|---|
| 73 | // If you know your imap's root directory and its folder delimiter, |
|---|
| 74 | // you can specify them here. Otherwise they will be determined automatically. |
|---|
| 75 | $rcmail_config['imap_root'] = null; |
|---|
| 76 | $rcmail_config['imap_delimiter'] = null; |
|---|
| 77 | |
|---|
| 78 | // By default IMAP capabilities are readed after connection to IMAP server |
|---|
| 79 | // In some cases, e.g. when using IMAP proxy, there's a need to refresh the list |
|---|
| 80 | // after login. Set to True if you've got this case. |
|---|
| 81 | $rcmail_config['imap_force_caps'] = false; |
|---|
| 82 | |
|---|
| 83 | // IMAP connection timeout, in seconds. Default: 0 (no limit) |
|---|
| 84 | $rcmail_config['imap_timeout'] = 0; |
|---|
| 85 | |
|---|
| 86 | // ---------------------------------- |
|---|
| 87 | // SMTP |
|---|
| 88 | // ---------------------------------- |
|---|
| 89 | |
|---|
| 90 | // SMTP server host (for sending mails). |
|---|
| 91 | // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls:// |
|---|
| 92 | // If left blank, the PHP mail() function is used |
|---|
| 93 | // Use %h variable as replacement for user's IMAP hostname |
|---|
| 94 | $rcmail_config['smtp_server'] = ''; |
|---|
| 95 | |
|---|
| 96 | // SMTP port (default is 25; 465 for SSL) |
|---|
| 97 | $rcmail_config['smtp_port'] = 25; |
|---|
| 98 | |
|---|
| 99 | // SMTP username (if required) if you use %u as the username RoundCube |
|---|
| 100 | // will use the current username for login |
|---|
| 101 | $rcmail_config['smtp_user'] = ''; |
|---|
| 102 | |
|---|
| 103 | // SMTP password (if required) if you use %p as the password RoundCube |
|---|
| 104 | // will use the current user's password for login |
|---|
| 105 | $rcmail_config['smtp_pass'] = ''; |
|---|
| 106 | |
|---|
| 107 | // SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use |
|---|
| 108 | // best server supported one) |
|---|
| 109 | $rcmail_config['smtp_auth_type'] = ''; |
|---|
| 110 | |
|---|
| 111 | // SMTP HELO host |
|---|
| 112 | // Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages |
|---|
| 113 | // Leave this blank and you will get the server variable 'server_name' or |
|---|
| 114 | // localhost if that isn't defined. |
|---|
| 115 | $rcmail_config['smtp_helo_host'] = ''; |
|---|
| 116 | |
|---|
| 117 | // SMTP connection timeout, in seconds. Default: 0 (no limit) |
|---|
| 118 | $rcmail_config['smtp_timeout'] = 0; |
|---|
| 119 | |
|---|
| 120 | // ---------------------------------- |
|---|
| 121 | // SYSTEM |
|---|
| 122 | // ---------------------------------- |
|---|
| 123 | |
|---|
| 124 | // THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA. |
|---|
| 125 | // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING! |
|---|
| 126 | $rcmail_config['enable_installer'] = false; |
|---|
| 127 | |
|---|
| 128 | // use this folder to store log files (must be writeable for apache user) |
|---|
| 129 | // This is used by the 'file' log driver. |
|---|
| 130 | $rcmail_config['log_dir'] = 'logs/'; |
|---|
| 131 | |
|---|
| 132 | // use this folder to store temp files (must be writeable for apache user) |
|---|
| 133 | $rcmail_config['temp_dir'] = 'temp/'; |
|---|
| 134 | |
|---|
| 135 | // enable caching of messages and mailbox data in the local database. |
|---|
| 136 | // this is recommended if the IMAP server does not run on the same machine |
|---|
| 137 | $rcmail_config['enable_caching'] = false; |
|---|
| 138 | |
|---|
| 139 | // lifetime of message cache |
|---|
| 140 | // possible units: s, m, h, d, w |
|---|
| 141 | $rcmail_config['message_cache_lifetime'] = '10d'; |
|---|
| 142 | |
|---|
| 143 | // enforce connections over https |
|---|
| 144 | // with this option enabled, all non-secure connections will be redirected. |
|---|
| 145 | // set the port for the ssl connection as value of this option if it differs from the default 443 |
|---|
| 146 | $rcmail_config['force_https'] = false; |
|---|
| 147 | |
|---|
| 148 | // automatically create a new RoundCube user when log-in the first time. |
|---|
| 149 | // a new user will be created once the IMAP login succeeds. |
|---|
| 150 | // set to false if only registered users can use this service |
|---|
| 151 | $rcmail_config['auto_create_user'] = true; |
|---|
| 152 | |
|---|
| 153 | // Includes should be interpreted as PHP files |
|---|
| 154 | $rcmail_config['skin_include_php'] = false; |
|---|
| 155 | |
|---|
| 156 | // Session lifetime in minutes |
|---|
| 157 | // must be greater than 'keep_alive'/60 |
|---|
| 158 | $rcmail_config['session_lifetime'] = 10; |
|---|
| 159 | |
|---|
| 160 | // check client IP in session athorization |
|---|
| 161 | $rcmail_config['ip_check'] = false; |
|---|
| 162 | |
|---|
| 163 | // Use an additional frequently changing cookie to athenticate user sessions. |
|---|
| 164 | // There have been problems reported with this feature. |
|---|
| 165 | $rcmail_config['double_auth'] = false; |
|---|
| 166 | |
|---|
| 167 | // this key is used to encrypt the users imap password which is stored |
|---|
| 168 | // in the session record (and the client cookie if remember password is enabled). |
|---|
| 169 | // please provide a string of exactly 24 chars. |
|---|
| 170 | $rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str'; |
|---|
| 171 | |
|---|
| 172 | // Automatically add this domain to user names for login |
|---|
| 173 | // Only for IMAP servers that require full e-mail addresses for login |
|---|
| 174 | // Specify an array with 'host' => 'domain' values to support multiple hosts |
|---|
| 175 | $rcmail_config['username_domain'] = ''; |
|---|
| 176 | |
|---|
| 177 | // This domain will be used to form e-mail addresses of new users |
|---|
| 178 | // Specify an array with 'host' => 'domain' values to support multiple hosts |
|---|
| 179 | $rcmail_config['mail_domain'] = ''; |
|---|
| 180 | |
|---|
| 181 | // Password charset. |
|---|
| 182 | // Use it if your authentication backend doesn't support UTF-8. |
|---|
| 183 | // Defaults to ISO-8859-1 for backward compatibility |
|---|
| 184 | $rcmail_config['password_charset'] = 'ISO-8859-1'; |
|---|
| 185 | |
|---|
| 186 | // How many seconds must pass between emails sent by a user |
|---|
| 187 | $rcmail_config['sendmail_delay'] = 0; |
|---|
| 188 | |
|---|
| 189 | // Maximum number of recipients per message. Default: 0 (no limit) |
|---|
| 190 | $rcmail_config['max_recipients'] = 0; |
|---|
| 191 | |
|---|
| 192 | // Maximum allowednumber of members of an address group. Default: 0 (no limit) |
|---|
| 193 | // If 'max_recipients' is set this value should be less or equal |
|---|
| 194 | $rcmail_config['max_group_members'] = 0; |
|---|
| 195 | |
|---|
| 196 | // add this user-agent to message headers when sending |
|---|
| 197 | $rcmail_config['useragent'] = 'Roundcube Webmail/'.RCMAIL_VERSION; |
|---|
| 198 | |
|---|
| 199 | // use this name to compose page titles |
|---|
| 200 | $rcmail_config['product_name'] = 'Roundcube Webmail'; |
|---|
| 201 | |
|---|
| 202 | // try to load host-specific configuration |
|---|
| 203 | // see http://trac.roundcube.net/wiki/Howto_Config for more details |
|---|
| 204 | $rcmail_config['include_host_config'] = false; |
|---|
| 205 | |
|---|
| 206 | // path to a text file which will be added to each sent message |
|---|
| 207 | // paths are relative to the RoundCube root folder |
|---|
| 208 | $rcmail_config['generic_message_footer'] = ''; |
|---|
| 209 | |
|---|
| 210 | // add a received header to outgoing mails containing the creators IP and hostname |
|---|
| 211 | $rcmail_config['http_received_header'] = false; |
|---|
| 212 | |
|---|
| 213 | // Whether or not to encrypt the IP address and the host name |
|---|
| 214 | // these could, in some circles, be considered as sensitive information; |
|---|
| 215 | // however, for the administrator, these could be invaluable help |
|---|
| 216 | // when tracking down issues. |
|---|
| 217 | $rcmail_config['http_received_header_encrypt'] = false; |
|---|
| 218 | |
|---|
| 219 | // This string is used as a delimiter for message headers when sending |
|---|
| 220 | // a message via mail() function. Leave empty for auto-detection |
|---|
| 221 | $rcmail_config['mail_header_delimiter'] = NULL; |
|---|
| 222 | |
|---|
| 223 | // number of chars allowed for line when wrapping text. |
|---|
| 224 | // text wrapping is done when composing/sending messages |
|---|
| 225 | $rcmail_config['line_length'] = 72; |
|---|
| 226 | |
|---|
| 227 | // send plaintext messages as format=flowed |
|---|
| 228 | $rcmail_config['send_format_flowed'] = true; |
|---|
| 229 | |
|---|
| 230 | // session domain: .example.org |
|---|
| 231 | $rcmail_config['session_domain'] = ''; |
|---|
| 232 | |
|---|
| 233 | // don't allow these settings to be overriden by the user |
|---|
| 234 | $rcmail_config['dont_override'] = array(); |
|---|
| 235 | |
|---|
| 236 | // Set identities access level: |
|---|
| 237 | // 0 - many identities with possibility to edit all params |
|---|
| 238 | // 1 - many identities with possibility to edit all params but not email address |
|---|
| 239 | // 2 - one identity with possibility to edit all params |
|---|
| 240 | // 3 - one identity with possibility to edit all params but not email address |
|---|
| 241 | $rcmail_config['identities_level'] = 0; |
|---|
| 242 | |
|---|
| 243 | // mime magic database |
|---|
| 244 | $rcmail_config['mime_magic'] = '/usr/share/misc/magic'; |
|---|
| 245 | |
|---|
| 246 | // Enable DNS checking for e-mail address validation |
|---|
| 247 | $rcmail_config['email_dns_check'] = false; |
|---|
| 248 | |
|---|
| 249 | // ---------------------------------- |
|---|
| 250 | // PLUGINS |
|---|
| 251 | // ---------------------------------- |
|---|
| 252 | |
|---|
| 253 | // List of active plugins (in plugins/ directory) |
|---|
| 254 | $rcmail_config['plugins'] = array(); |
|---|
| 255 | |
|---|
| 256 | // ---------------------------------- |
|---|
| 257 | // USER INTERFACE |
|---|
| 258 | // ---------------------------------- |
|---|
| 259 | |
|---|
| 260 | // default messages sort column. Use empty value for default server's sorting, |
|---|
| 261 | // or 'arrival', 'date', 'subject', 'from', 'to', 'size', 'cc' |
|---|
| 262 | $rcmail_config['message_sort_col'] = ''; |
|---|
| 263 | |
|---|
| 264 | // default messages sort order |
|---|
| 265 | $rcmail_config['message_sort_order'] = 'DESC'; |
|---|
| 266 | |
|---|
| 267 | // These cols are shown in the message list. Available cols are: |
|---|
| 268 | // subject, from, to, cc, replyto, date, size, flag, attachment |
|---|
| 269 | $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag', 'attachment'); |
|---|
| 270 | |
|---|
| 271 | // the default locale setting (leave empty for auto-detection) |
|---|
| 272 | // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR |
|---|
| 273 | $rcmail_config['language'] = null; |
|---|
| 274 | |
|---|
| 275 | // use this format for short date display (date or strftime format) |
|---|
| 276 | $rcmail_config['date_short'] = 'D H:i'; |
|---|
| 277 | |
|---|
| 278 | // use this format for detailed date/time formatting (date or strftime format) |
|---|
| 279 | $rcmail_config['date_long'] = 'd.m.Y H:i'; |
|---|
| 280 | |
|---|
| 281 | // use this format for today's date display (date or strftime format) |
|---|
| 282 | $rcmail_config['date_today'] = 'H:i'; |
|---|
| 283 | |
|---|
| 284 | // store draft message is this mailbox |
|---|
| 285 | // leave blank if draft messages should not be stored |
|---|
| 286 | $rcmail_config['drafts_mbox'] = 'Drafts'; |
|---|
| 287 | |
|---|
| 288 | // store spam messages in this mailbox |
|---|
| 289 | $rcmail_config['junk_mbox'] = 'Junk'; |
|---|
| 290 | |
|---|
| 291 | // store sent message is this mailbox |
|---|
| 292 | // leave blank if sent messages should not be stored |
|---|
| 293 | $rcmail_config['sent_mbox'] = 'Sent'; |
|---|
| 294 | |
|---|
| 295 | // move messages to this folder when deleting them |
|---|
| 296 | // leave blank if they should be deleted directly |
|---|
| 297 | $rcmail_config['trash_mbox'] = 'Trash'; |
|---|
| 298 | |
|---|
| 299 | // display these folders separately in the mailbox list. |
|---|
| 300 | // these folders will also be displayed with localized names |
|---|
| 301 | $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); |
|---|
| 302 | |
|---|
| 303 | // automatically create the above listed default folders on login |
|---|
| 304 | $rcmail_config['create_default_folders'] = false; |
|---|
| 305 | |
|---|
| 306 | // protect the default folders from renames, deletes, and subscription changes |
|---|
| 307 | $rcmail_config['protect_default_folders'] = true; |
|---|
| 308 | |
|---|
| 309 | // if in your system 0 quota means no limit set this option to true |
|---|
| 310 | $rcmail_config['quota_zero_as_unlimited'] = false; |
|---|
| 311 | |
|---|
| 312 | // Behavior if a received message requests a message delivery notification (read receipt) |
|---|
| 313 | // 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask) |
|---|
| 314 | $rcmail_config['mdn_requests'] = 0; |
|---|
| 315 | |
|---|
| 316 | // Make use of the built-in spell checker. It is based on GoogieSpell. |
|---|
| 317 | // Since Google only accepts connections over https your PHP installatation |
|---|
| 318 | // requires to be compiled with Open SSL support |
|---|
| 319 | $rcmail_config['enable_spellcheck'] = true; |
|---|
| 320 | |
|---|
| 321 | // Set the spell checking engine. 'googie' is the default. 'pspell' is also available, |
|---|
| 322 | // but requires the Pspell extensions. When using Nox Spell Server, also set 'googie' here. |
|---|
| 323 | $rcmail_config['spellcheck_engine'] = 'googie'; |
|---|
| 324 | |
|---|
| 325 | // For a locally installed Nox Spell Server, please specify the URI to call it. |
|---|
| 326 | // Get Nox Spell Server from http://orangoo.com/labs/?page_id=72 |
|---|
| 327 | // Leave empty to use the Google spell checking service, what means |
|---|
| 328 | // that the message content will be sent to Google in order to check spelling |
|---|
| 329 | $rcmail_config['spellcheck_uri'] = ''; |
|---|
| 330 | |
|---|
| 331 | // These languages can be selected for spell checking. |
|---|
| 332 | // Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch'); |
|---|
| 333 | // Leave empty for default set of available language. |
|---|
| 334 | $rcmail_config['spellcheck_languages'] = NULL; |
|---|
| 335 | |
|---|
| 336 | // don't let users set pagesize to more than this value if set |
|---|
| 337 | $rcmail_config['max_pagesize'] = 200; |
|---|
| 338 | |
|---|
| 339 | // Minimal value of user's 'keep_alive' setting (in seconds) |
|---|
| 340 | // Must be less than 'session_lifetime' |
|---|
| 341 | $rcmail_config['min_keep_alive'] = 60; |
|---|
| 342 | |
|---|
| 343 | // ---------------------------------- |
|---|
| 344 | // ADDRESSBOOK SETTINGS |
|---|
| 345 | // ---------------------------------- |
|---|
| 346 | |
|---|
| 347 | // This indicates which type of address book to use. Possible choises: |
|---|
| 348 | // 'sql' (default) and 'ldap'. |
|---|
| 349 | // If set to 'ldap' then it will look at using the first writable LDAP |
|---|
| 350 | // address book as the primary address book and it will not display the |
|---|
| 351 | // SQL address book in the 'Address Book' view. |
|---|
| 352 | $rcmail_config['address_book_type'] = 'sql'; |
|---|
| 353 | |
|---|
| 354 | // In order to enable public ldap search, configure an array like the Verisign |
|---|
| 355 | // example further below. if you would like to test, simply uncomment the example. |
|---|
| 356 | $rcmail_config['ldap_public'] = array(); |
|---|
| 357 | |
|---|
| 358 | // |
|---|
| 359 | // If you are going to use LDAP for individual address books, you will need to |
|---|
| 360 | // set 'user_specific' to true and use the variables to generate the appropriate DNs to access it. |
|---|
| 361 | // |
|---|
| 362 | // The recommended directory structure for LDAP is to store all the address book entries |
|---|
| 363 | // under the users main entry, e.g.: |
|---|
| 364 | // |
|---|
| 365 | // o=root |
|---|
| 366 | // ou=people |
|---|
| 367 | // uid=user@domain |
|---|
| 368 | // mail=contact@contactdomain |
|---|
| 369 | // |
|---|
| 370 | // So the base_dn would be uid=%fu,ou=people,o=root |
|---|
| 371 | // The bind_dn would be the same as based_dn or some super user login. |
|---|
| 372 | /* |
|---|
| 373 | * example config for Verisign directory |
|---|
| 374 | * |
|---|
| 375 | $rcmail_config['ldap_public']['Verisign'] = array( |
|---|
| 376 | 'name' => 'Verisign.com', |
|---|
| 377 | 'hosts' => array('directory.verisign.com'), |
|---|
| 378 | 'port' => 389, |
|---|
| 379 | 'use_tls' => false, |
|---|
| 380 | 'user_specific' => false, // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login. |
|---|
| 381 | // %fu - The full username provided, assumes the username is an email |
|---|
| 382 | // address, uses the username_domain value if not an email address. |
|---|
| 383 | // %u - The username prior to the '@'. |
|---|
| 384 | // %d - The domain name after the '@'. |
|---|
| 385 | 'base_dn' => '', |
|---|
| 386 | 'bind_dn' => '', |
|---|
| 387 | 'bind_pass' => '', |
|---|
| 388 | 'writable' => false, // Indicates if we can write to the LDAP directory or not. |
|---|
| 389 | // If writable is true then these fields need to be populated: |
|---|
| 390 | // LDAP_Object_Classes, required_fields, LDAP_rdn |
|---|
| 391 | 'LDAP_Object_Classes' => array("top", "inetOrgPerson"), // To create a new contact these are the object classes to specify (or any other classes you wish to use). |
|---|
| 392 | 'required_fields' => array("cn", "sn", "mail"), // The required fields needed to build a new contact as required by the object classes (can include additional fields not required by the object classes). |
|---|
| 393 | 'LDAP_rdn' => 'mail', // The RDN field that is used for new entries, this field needs to be one of the search_fields, the base of base_dn is appended to the RDN to insert into the LDAP directory. |
|---|
| 394 | 'ldap_version' => 3, // using LDAPv3 |
|---|
| 395 | 'search_fields' => array('mail', 'cn'), // fields to search in |
|---|
| 396 | 'name_field' => 'cn', // this field represents the contact's name |
|---|
| 397 | 'email_field' => 'mail', // this field represents the contact's e-mail |
|---|
| 398 | 'surname_field' => 'sn', // this field represents the contact's last name |
|---|
| 399 | 'firstname_field' => 'gn', // this field represents the contact's first name |
|---|
| 400 | 'sort' => 'cn', // The field to sort the listing by. |
|---|
| 401 | 'scope' => 'sub', // search mode: sub|base|list |
|---|
| 402 | 'filter' => '', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act |
|---|
| 403 | 'fuzzy_search' => true // server allows wildcard search |
|---|
| 404 | 'sizelimit' => '0', // Enables you to limit the count of entries fetched. Setting this to 0 means no limit. |
|---|
| 405 | 'timelimit' => '0', // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit. |
|---|
| 406 | ); |
|---|
| 407 | */ |
|---|
| 408 | |
|---|
| 409 | // An ordered array of the ids of the addressbooks that should be searched |
|---|
| 410 | // when populating address autocomplete fields server-side. ex: array('sql','Verisign'); |
|---|
| 411 | $rcmail_config['autocomplete_addressbooks'] = array('sql'); |
|---|
| 412 | |
|---|
| 413 | // ---------------------------------- |
|---|
| 414 | // USER PREFERENCES |
|---|
| 415 | // ---------------------------------- |
|---|
| 416 | |
|---|
| 417 | // Use this charset as fallback for message decoding |
|---|
| 418 | $rcmail_config['default_charset'] = 'ISO-8859-1'; |
|---|
| 419 | |
|---|
| 420 | // skin name: folder from skins/ |
|---|
| 421 | $rcmail_config['skin'] = 'default'; |
|---|
| 422 | |
|---|
| 423 | // show up to X items in list view |
|---|
| 424 | $rcmail_config['pagesize'] = 40; |
|---|
| 425 | |
|---|
| 426 | // use this timezone to display date/time |
|---|
| 427 | $rcmail_config['timezone'] = 'auto'; |
|---|
| 428 | |
|---|
| 429 | // is daylight saving On? |
|---|
| 430 | $rcmail_config['dst_active'] = (bool)date('I'); |
|---|
| 431 | |
|---|
| 432 | // prefer displaying HTML messages |
|---|
| 433 | $rcmail_config['prefer_html'] = true; |
|---|
| 434 | |
|---|
| 435 | // display remote inline images |
|---|
| 436 | // 0 - Never, always ask |
|---|
| 437 | // 1 - Ask if sender is not in address book |
|---|
| 438 | // 2 - Always show inline images |
|---|
| 439 | $rcmail_config['show_images'] = 0; |
|---|
| 440 | |
|---|
| 441 | // compose html formatted messages by default |
|---|
| 442 | $rcmail_config['htmleditor'] = false; |
|---|
| 443 | |
|---|
| 444 | // show pretty dates as standard |
|---|
| 445 | $rcmail_config['prettydate'] = true; |
|---|
| 446 | |
|---|
| 447 | // save compose message every 300 seconds (5min) |
|---|
| 448 | $rcmail_config['draft_autosave'] = 300; |
|---|
| 449 | |
|---|
| 450 | // default setting if preview pane is enabled |
|---|
| 451 | $rcmail_config['preview_pane'] = false; |
|---|
| 452 | |
|---|
| 453 | // Mark as read when viewed in preview pane (delay in seconds) |
|---|
| 454 | // Set to -1 if messages in preview pane should not be marked as read |
|---|
| 455 | $rcmail_config['preview_pane_mark_read'] = 0; |
|---|
| 456 | |
|---|
| 457 | // focus new window if new message arrives |
|---|
| 458 | $rcmail_config['focus_on_new_message'] = true; |
|---|
| 459 | |
|---|
| 460 | // Clear Trash on logout |
|---|
| 461 | $rcmail_config['logout_purge'] = false; |
|---|
| 462 | |
|---|
| 463 | // Compact INBOX on logout |
|---|
| 464 | $rcmail_config['logout_expunge'] = false; |
|---|
| 465 | |
|---|
| 466 | // Display attached images below the message body |
|---|
| 467 | $rcmail_config['inline_images'] = true; |
|---|
| 468 | |
|---|
| 469 | // Encoding of long/non-ascii attachment names: |
|---|
| 470 | // 0 - Full RFC 2231 compatible |
|---|
| 471 | // 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default) |
|---|
| 472 | // 2 - Full 2047 compatible |
|---|
| 473 | $rcmail_config['mime_param_folding'] = 1; |
|---|
| 474 | |
|---|
| 475 | // Set true if deleted messages should not be displayed |
|---|
| 476 | // This will make the application run slower |
|---|
| 477 | $rcmail_config['skip_deleted'] = false; |
|---|
| 478 | |
|---|
| 479 | // Set true to Mark deleted messages as read as well as deleted |
|---|
| 480 | // False means that a message's read status is not affected by marking it as deleted |
|---|
| 481 | $rcmail_config['read_when_deleted'] = true; |
|---|
| 482 | |
|---|
| 483 | // Set to true to newer delete messages immediately |
|---|
| 484 | // Use 'Purge' to remove messages marked as deleted |
|---|
| 485 | $rcmail_config['flag_for_deletion'] = false; |
|---|
| 486 | |
|---|
| 487 | // Default interval for keep-alive/check-recent requests (in seconds) |
|---|
| 488 | // Must be greater than or equal to 'min_keep_alive' and less than 'session_lifetime' |
|---|
| 489 | $rcmail_config['keep_alive'] = 60; |
|---|
| 490 | |
|---|
| 491 | // If true all folders will be checked for recent messages |
|---|
| 492 | $rcmail_config['check_all_folders'] = false; |
|---|
| 493 | |
|---|
| 494 | // If true, after message delete/move, the next message will be displayed |
|---|
| 495 | $rcmail_config['display_next'] = false; |
|---|
| 496 | |
|---|
| 497 | // 0 - Do not expand threads |
|---|
| 498 | // 1 - Expand all threads automatically |
|---|
| 499 | // 2 - Expand only threads with unread messages |
|---|
| 500 | $rcmail_config['autoexpand_threads'] = 0; |
|---|
| 501 | |
|---|
| 502 | // When replying place cursor above original message (top posting) |
|---|
| 503 | $rcmail_config['top_posting'] = false; |
|---|
| 504 | |
|---|
| 505 | // When replying strip original signature from message |
|---|
| 506 | $rcmail_config['strip_existing_sig'] = true; |
|---|
| 507 | |
|---|
| 508 | // Show signature: |
|---|
| 509 | // 0 - Never |
|---|
| 510 | // 1 - Always |
|---|
| 511 | // 2 - New messages only |
|---|
| 512 | // 3 - Forwards and Replies only |
|---|
| 513 | $rcmail_config['show_sig'] = 1; |
|---|
| 514 | |
|---|
| 515 | // When replying or forwarding place sender's signature above existing message |
|---|
| 516 | $rcmail_config['sig_above'] = false; |
|---|
| 517 | |
|---|
| 518 | // Use MIME encoding (quoted-printable) for 8bit characters in message body |
|---|
| 519 | $rcmail_config['force_7bit'] = false; |
|---|
| 520 | |
|---|
| 521 | // Defaults of the search field configuration. |
|---|
| 522 | // The array can contain a per-folder list of header fields which should be considered when searching |
|---|
| 523 | // The entry with key '*' stands for all folders which do not have a specific list set. |
|---|
| 524 | // Please note that folder names should to be in sync with $rcmail_config['default_imap_folders'] |
|---|
| 525 | $rcmail_config['search_mods'] = null; // Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1)); |
|---|
| 526 | |
|---|
| 527 | // 'Delete always' |
|---|
| 528 | // This setting reflects if mail should be always deleted |
|---|
| 529 | // when moving to Trash fails. This is necessary in some setups |
|---|
| 530 | // when user is over quota and Trash is included in the quota. |
|---|
| 531 | $rcmail_config['delete_always'] = false; |
|---|
| 532 | |
|---|
| 533 | // end of config file |
|---|
| 534 | ?> |
|---|