Advertisement
Guest User

roundcube main.php file

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