RoundCube Webmail
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

804 lines
33 KiB

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