Guest User

Untitled

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