{"ok":true,"c":" 'r',\n\/\/ 'cache_index' => 'r',\n\/\/ 'cache_thread' => 'r',\n\/\/ 'cache_messages' => 'r',\n);\n\n\/\/ It is possible to specify database variable values e.g. some limits here.\n\/\/ Use them if your server is not MySQL or for better performance.\n\/\/ For example Roundcube uses max_allowed_packet value (in bytes)\n\/\/ which limits query size for database cache operations.\n$config['db_max_allowed_packet'] = null;\n\n\n\/\/ ----------------------------------\n\/\/ LOGGING\/DEBUGGING\n\/\/ ----------------------------------\n\n\/\/ system error reporting, sum of: 1 = log; 4 = show\n$config['debug_level'] = 1;\n\n\/\/ log driver: 'syslog' or 'file'.\n$config['log_driver'] = 'file';\n\n\/\/ date format for log entries\n\/\/ (read http:\/\/php.net\/manual\/en\/function.date.php for all format characters) \n$config['log_date_format'] = 'd-M-Y H:i:s O';\n\n\/\/ length of the session ID to prepend each log line with\n\/\/ set to 0 to avoid session IDs being logged.\n$config['log_session_id'] = 8;\n\n\/\/ Syslog ident string to use, if using the 'syslog' log driver.\n$config['syslog_id'] = 'roundcube';\n\n\/\/ Syslog facility to use, if using the 'syslog' log driver.\n\/\/ For possible values see installer or http:\/\/php.net\/manual\/en\/function.openlog.php\n$config['syslog_facility'] = LOG_USER;\n\n\/\/ Activate this option if logs should be written to per-user directories.\n\/\/ Data will only be logged if a directry \/\/ exists and is writable.\n$config['per_user_logging'] = false;\n\n\/\/ Log sent messages to \/sendmail or to syslog\n$config['smtp_log'] = true;\n\n\/\/ Log successful\/failed logins to \/userlogins or to syslog\n$config['log_logins'] = false;\n\n\/\/ Log session authentication errors to \/session or to syslog\n$config['log_session'] = false;\n\n\/\/ Log SQL queries to \/sql or to syslog\n$config['sql_debug'] = false;\n\n\/\/ Log IMAP conversation to \/imap or to syslog\n$config['imap_debug'] = false;\n\n\/\/ Log LDAP conversation to \/ldap or to syslog\n$config['ldap_debug'] = false;\n\n\/\/ Log SMTP conversation to \/smtp or to syslog\n$config['smtp_debug'] = false;\n\n\/\/ Log Memcache conversation to \/memcache or to syslog\n$config['memcache_debug'] = false;\n\n\/\/ Log APC conversation to \/apc or to syslog\n$config['apc_debug'] = false;\n\n\n\/\/ ----------------------------------\n\/\/ IMAP\n\/\/ ----------------------------------\n\n\/\/ The mail host chosen to perform the log-in.\n\/\/ Leave blank to show a textbox at login, give a list of hosts\n\/\/ to display a pulldown menu or set one host as string.\n\/\/ To use SSL\/TLS connection, enter hostname with prefix ssl:\/\/ or tls:\/\/\n\/\/ Supported replacement variables:\n\/\/ %n - hostname ($_SERVER['SERVER_NAME'])\n\/\/ %t - hostname without the first part\n\/\/ %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)\n\/\/ %s - domain name after the '@' from e-mail address provided at login screen\n\/\/ For example %n = mail.domain.tld, %t = domain.tld\n\/\/ WARNING: After hostname change update of mail_host column in users table is\n\/\/ required to match old user data records with the new host.\n$config['default_host'] = 'localhost';\n\n\/\/ TCP port used for IMAP connections\n$config['default_port'] = 143;\n\n\/\/ IMAP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or null to use\n\/\/ best server supported one)\n$config['imap_auth_type'] = null;\n\n\/\/ IMAP socket context options\n\/\/ See http:\/\/php.net\/manual\/en\/context.ssl.php\n\/\/ The example below enables server certificate validation\n\/\/$config['imap_conn_options'] = array(\n\/\/ 'ssl' => array(\n\/\/ 'verify_peer' => true,\n\/\/ 'verify_depth' => 3,\n\/\/ 'cafile' => '\/etc\/openssl\/certs\/ca.crt',\n\/\/ ),\n\/\/ );\n$config['imap_conn_options'] = null;\n\n\/\/ IMAP connection timeout, in seconds. Default: 0 (use default_socket_timeout)\n$config['imap_timeout'] = 0;\n\n\/\/ Optional IMAP authentication identifier to be used as authorization proxy\n$config['imap_auth_cid'] = null;\n\n\/\/ Optional IMAP authentication password to be used for imap_auth_cid\n$config['imap_auth_pw'] = null;\n\n\/\/ If you know your imap's folder delimiter, you can specify it here.\n\/\/ Otherwise it will be determined automatically\n$config['imap_delimiter'] = null;\n\n\/\/ If you know your imap's folder vendor, you can specify it here.\n\/\/ Otherwise it will be determined automatically. Use lower-case\n\/\/ identifiers, e.g. 'dovecot', 'cyrus', 'gmail', 'hmail', 'uw-imap'.\n$config['imap_vendor'] = null;\n\n\/\/ If IMAP server doesn't support NAMESPACE extension, but you're\n\/\/ using shared folders or personal root folder is non-empty, you'll need to\n\/\/ set these options. All can be strings or arrays of strings.\n\/\/ Folders need to be ended with directory separator, e.g. \"INBOX.\"\n\/\/ (special directory \"~\" is an exception to this rule)\n\/\/ These can be used also to overwrite server's namespaces\n$config['imap_ns_personal'] = null;\n$config['imap_ns_other'] = null;\n$config['imap_ns_shared'] = null;\n\n\/\/ By default IMAP capabilities are readed after connection to IMAP server\n\/\/ In some cases, e.g. when using IMAP proxy, there's a need to refresh the list\n\/\/ after login. Set to True if you've got this case.\n$config['imap_force_caps'] = false;\n\n\/\/ By default list of subscribed folders is determined using LIST-EXTENDED\n\/\/ extension if available. Some servers (dovecot 1.x) returns wrong results\n\/\/ for shared namespaces in this case. http:\/\/trac.roundcube.net\/ticket\/1486225\n\/\/ Enable this option to force LSUB command usage instead.\n\/\/ Deprecated: Use imap_disabled_caps = array('LIST-EXTENDED')\n$config['imap_force_lsub'] = false;\n\n\/\/ Some server configurations (e.g. Courier) doesn't list folders in all namespaces\n\/\/ Enable this option to force listing of folders in all namespaces\n$config['imap_force_ns'] = false;\n\n\/\/ Some servers return hidden folders (name starting witha dot)\n\/\/ from user home directory. IMAP RFC does not forbid that.\n\/\/ Enable this option to hide them and disable possibility to create such.\n$config['imap_skip_hidden_folders'] = false;\n\n\/\/ List of disabled imap extensions.\n\/\/ Use if your IMAP server has broken implementation of some feature\n\/\/ and you can't remove it from CAPABILITY string on server-side.\n\/\/ For example UW-IMAP server has broken ESEARCH.\n\/\/ Note: Because the list is cached, re-login is required after change.\n$config['imap_disabled_caps'] = array();\n\n\/\/ Log IMAP session identifers after each IMAP login.\n\/\/ This is used to relate IMAP session with Roundcube user sessions\n$config['imap_log_session'] = false;\n\n\/\/ Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache'.\n$config['imap_cache'] = null;\n\n\/\/ Enables messages cache. Only 'db' cache is supported.\n\/\/ This requires an IMAP server that supports QRESYNC and CONDSTORE\n\/\/ extensions (RFC7162). See synchronize() in program\/lib\/Roundcube\/rcube_imap_cache.php\n\/\/ for further info, or if you experience syncing problems.\n$config['messages_cache'] = false;\n\n\/\/ Lifetime of IMAP indexes cache. Possible units: s, m, h, d, w\n$config['imap_cache_ttl'] = '10d';\n\n\/\/ Lifetime of messages cache. Possible units: s, m, h, d, w\n$config['messages_cache_ttl'] = '10d';\n\n\/\/ Maximum cached message size in kilobytes.\n\/\/ Note: On MySQL this should be less than (max_allowed_packet - 30%)\n$config['messages_cache_threshold'] = 50;\n\n\n\/\/ ----------------------------------\n\/\/ SMTP\n\/\/ ----------------------------------\n\n\/\/ SMTP server host (for sending mails).\n\/\/ To use SSL\/TLS connection, enter hostname with prefix ssl:\/\/ or tls:\/\/\n\/\/ If left blank, the PHP mail() function is used\n\/\/ Supported replacement variables:\n\/\/ %h - user's IMAP hostname\n\/\/ %n - hostname ($_SERVER['SERVER_NAME'])\n\/\/ %t - hostname without the first part\n\/\/ %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)\n\/\/ %z - IMAP domain (IMAP hostname without the first part)\n\/\/ For example %n = mail.domain.tld, %t = domain.tld\n$config['smtp_server'] = '__smtp_server__';\n\n\/\/ SMTP port (default is 25; use 587 for STARTTLS or 465 for the\n\/\/ deprecated SSL over SMTP (aka SMTPS))\n$config['smtp_port'] = 587;\n\n\/\/ SMTP username (if required) if you use %u as the username Roundcube\n\/\/ will use the current username for login\n$config['smtp_user'] = '__smtp_user__';\n\n\/\/ SMTP password (if required) if you use %p as the password Roundcube\n\/\/ will use the current user's password for login\n$config['smtp_pass'] = '__smtp_pass__';\n\n\/\/ SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use\n\/\/ best server supported one)\n$config['smtp_auth_type'] = '__smtp_auth_type__';\n\n\/\/ Optional SMTP authentication identifier to be used as authorization proxy\n$config['smtp_auth_cid'] = null;\n\n\/\/ Optional SMTP authentication password to be used for smtp_auth_cid\n$config['smtp_auth_pw'] = null;\n\n\/\/ SMTP HELO host \n\/\/ Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages \n\/\/ Leave this blank and you will get the server variable 'server_name' or \n\/\/ localhost if that isn't defined.\n$config['smtp_helo_host'] = gethostname();\n\n\/\/ SMTP connection timeout, in seconds. Default: 0 (use default_socket_timeout)\n\/\/ Note: There's a known issue where using ssl connection with\n\/\/ timeout > 0 causes connection errors (https:\/\/bugs.php.net\/bug.php?id=54511)\n$config['smtp_timeout'] = 0;\n\n\/\/ SMTP socket context options\n\/\/ See http:\/\/php.net\/manual\/en\/context.ssl.php\n\/\/ The example below enables server certificate validation, and\n\/\/ requires 'smtp_timeout' to be non zero.\n\/\/ $config['smtp_conn_options'] = array(\n\/\/ 'ssl' => array(\n\/\/ 'verify_peer' => true,\n\/\/ 'verify_depth' => 3,\n\/\/ 'cafile' => '\/etc\/openssl\/certs\/ca.crt',\n\/\/ ),\n\/\/ );\n$config['smtp_conn_options'] = null;\n\n\n\/\/ ----------------------------------\n\/\/ LDAP\n\/\/ ----------------------------------\n\n\/\/ Type of LDAP cache. Supported values: 'db', 'apc' and 'memcache'.\n$config['ldap_cache'] = 'db';\n\n\/\/ Lifetime of LDAP cache. Possible units: s, m, h, d, w\n$config['ldap_cache_ttl'] = '10m';\n\n\n\/\/ ----------------------------------\n\/\/ SYSTEM\n\/\/ ----------------------------------\n\n\/\/ THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA.\n\/\/ ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING!\n$config['enable_installer'] = false;\n\n\/\/ don't allow these settings to be overriden by the user\n$config['dont_override'] = array();\n\n\/\/ List of disabled UI elements\/actions\n$config['disabled_actions'] = array();\n\n\/\/ define which settings should be listed under the 'advanced' block\n\/\/ which is hidden by default\n$config['advanced_prefs'] = array();\n\n\/\/ provide an URL where a user can get support for this Roundcube installation\n\/\/ PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!\n$config['support_url'] = '';\n\n\/\/ replace Roundcube logo with this image\n\/\/ specify an URL relative to the document root of this Roundcube installation\n\/\/ an array can be used to specify different logos for specific template files, '*' for default logo\n\/\/ for example array(\"*\" => \"\/images\/roundcube_logo.png\", \"messageprint\" => \"\/images\/roundcube_logo_print.png\")\n$config['skin_logo'] = null;\n\n\/\/ automatically create a new Roundcube user when log-in the first time.\n\/\/ a new user will be created once the IMAP login succeeds.\n\/\/ set to false if only registered users can use this service\n$config['auto_create_user'] = true;\n\n\/\/ Enables possibility to log in using email address from user identities\n$config['user_aliases'] = false;\n\n\/\/ use this folder to store log files\n\/\/ must be writeable for the user who runs PHP process (Apache user if mod_php is being used)\n\/\/ This is used by the 'file' log driver.\n$config['log_dir'] = '__log_dir__';\n\n\/\/ use this folder to store temp files\n\/\/ must be writeable for the user who runs PHP process (Apache user if mod_php is being used)\n$config['temp_dir'] = '__temp_dir__';\n\n\/\/ expire files in temp_dir after 48 hours\n\/\/ possible units: s, m, h, d, w\n$config['temp_dir_ttl'] = '48h';\n\n\/\/ enforce connections over https\n\/\/ with this option enabled, all non-secure connections will be redirected.\n\/\/ set the port for the ssl connection as value of this option if it differs from the default 443\n$config['force_https'] = false;\n\n\/\/ tell PHP that it should work as under secure connection\n\/\/ even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set)\n\/\/ e.g. when you're running Roundcube behind a https proxy\n\/\/ this option is mutually exclusive to 'force_https' and only either one of them should be set to true.\n$config['use_https'] = false;\n\n\/\/ Allow browser-autocompletion on login form.\n\/\/ 0 - disabled, 1 - username and host only, 2 - username, host, password\n$config['login_autocomplete'] = 0;\n\n\/\/ Forces conversion of logins to lower case.\n\/\/ 0 - disabled, 1 - only domain part, 2 - domain and local part.\n\/\/ If users authentication is case-insensitive this must be enabled.\n\/\/ Note: After enabling it all user records need to be updated, e.g. with query:\n\/\/ UPDATE users SET username = LOWER(username);\n$config['login_lc'] = 2;\n\n\/\/ Maximum length (in bytes) of logon username and password.\n$config['login_username_maxlen'] = 1024;\n$config['login_password_maxlen'] = 1024;\n\n\/\/ Logon username filter. Regular expression for use with preg_match().\n\/\/ Example: '\/^[a-z0-9_@.-]+$\/'\n$config['login_username_filter'] = null;\n\n\/\/ Brute-force attacks prevention.\n\/\/ The value specifies maximum number of failed logon attempts per minute.\n$config['login_rate_limit'] = 3;\n\n\/\/ Includes should be interpreted as PHP files\n$config['skin_include_php'] = false;\n\n\/\/ display software version on login screen\n$config['display_version'] = false;\n\n\/\/ Session lifetime in minutes\n$config['session_lifetime'] = 10;\n\n\/\/ Session domain: .example.org\n$config['session_domain'] = '';\n\n\/\/ Session name. Default: 'roundcube_sessid'\n$config['session_name'] = null;\n\n\/\/ Session authentication cookie name. Default: 'roundcube_sessauth'\n$config['session_auth_name'] = null;\n\n\/\/ Session path. Defaults to PHP session.cookie_path setting.\n$config['session_path'] = null;\n\n\/\/ Backend to use for session storage. Can either be 'db' (default), 'redis', 'memcache', or 'php'\n\/\/\n\/\/ If set to 'memcache', a list of servers need to be specified in 'memcache_hosts'\n\/\/ Make sure the Memcache extension (http:\/\/pecl.php.net\/package\/memcache) version >= 2.0.0 is installed\n\/\/\n\/\/ If set to 'redis', a server needs to be specified in 'redis_hosts'\n\/\/ Make sure the Redis extension (http:\/\/pecl.php.net\/package\/redis) version >= 2.0.0 is installed\n\/\/\n\/\/ Setting this value to 'php' will use the default session save handler configured in PHP\n$config['session_storage'] = 'db';\n\n\/\/ Use these hosts for accessing memcached\n\/\/ Define any number of hosts in the form of hostname:port or unix:\/\/\/path\/to\/socket.file\n$config['memcache_hosts'] = null; \/\/ e.g. array( 'localhost:11211', '192.168.1.12:11211', 'unix:\/\/\/var\/tmp\/memcached.sock' );\n\n\/\/ Controls the use of a persistent connections to memcache servers\n\/\/ See http:\/\/php.net\/manual\/en\/memcache.addserver.php\n$config['memcache_pconnect'] = true;\n\n\/\/ Value in seconds which will be used for connecting to the daemon\n\/\/ See http:\/\/php.net\/manual\/en\/memcache.addserver.php\n$config['memcache_timeout'] = 1;\n\n\/\/ Controls how often a failed server will be retried (value in seconds).\n\/\/ Setting this parameter to -1 disables automatic retry.\n\/\/ See http:\/\/php.net\/manual\/en\/memcache.addserver.php\n$config['memcache_retry_interval'] = 15;\n\n\/\/ use this for accessing redis\n\/\/ currently only one host is supported. cluster support may come in a future release.\n\/\/ you can pass 4 fields, host, port, database and password.\n\/\/ unset fields will be set to the default values host=127.0.0.1, port=6379, database=0, password= (empty)\n\n$config['redis_hosts'] = null; \/\/ e.g. array( 'localhost:6379' ); array( '192.168.1.1:6379:1:secret' );\n\n\/\/ check client IP in session authorization\n$config['ip_check'] = false;\n\n\/\/ List of trusted proxies\n\/\/ X_FORWARDED_* and X_REAL_IP headers are only accepted from these IPs\n$config['proxy_whitelist'] = array();\n\n\/\/ check referer of incoming requests\n$config['referer_check'] = false;\n\n\/\/ X-Frame-Options HTTP header value sent to prevent from Clickjacking.\n\/\/ Possible values: sameorigin|deny. Set to false in order to disable sending them\n$config['x_frame_options'] = 'sameorigin';\n\n\/\/ This key is used for encrypting purposes, like storing of imap password\n\/\/ in the session. For historical reasons it's called DES_key, but it's used\n\/\/ with any configured cipher_method (see below).\n$config['des_key'] = 'ccmail-!24ByteDESkey*Str';\n\n\/\/ Encryption algorithm. You can use any method supported by openssl.\n\/\/ Default is set for backward compatibility to DES-EDE3-CBC,\n\/\/ but you can choose e.g. AES-256-CBC which we consider a better choice.\n$config['cipher_method'] = 'DES-EDE3-CBC';\n\n\/\/ Automatically add this domain to user names for login\n\/\/ Only for IMAP servers that require full e-mail addresses for login\n\/\/ Specify an array with 'host' => 'domain' values to support multiple hosts\n\/\/ Supported replacement variables:\n\/\/ %h - user's IMAP hostname\n\/\/ %n - hostname ($_SERVER['SERVER_NAME'])\n\/\/ %t - hostname without the first part\n\/\/ %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)\n\/\/ %z - IMAP domain (IMAP hostname without the first part)\n\/\/ For example %n = mail.domain.tld, %t = domain.tld\n$config['username_domain'] = '';\n\n\/\/ Force domain configured in username_domain to be used for login.\n\/\/ Any domain in username will be replaced by username_domain.\n$config['username_domain_forced'] = false;\n\n\/\/ This domain will be used to form e-mail addresses of new users\n\/\/ Specify an array with 'host' => 'domain' values to support multiple hosts\n\/\/ Supported replacement variables:\n\/\/ %h - user's IMAP hostname\n\/\/ %n - http hostname ($_SERVER['SERVER_NAME'])\n\/\/ %d - domain (http hostname without the first part)\n\/\/ %z - IMAP domain (IMAP hostname without the first part)\n\/\/ For example %n = mail.domain.tld, %t = domain.tld\n$config['mail_domain'] = $_SERVER['DNS'];\n\n\/\/ Password character set.\n\/\/ If your authentication backend supports it, use \"UTF-8\".\n\/\/ Otherwise, use the appropriate character set.\n\/\/ Defaults to ISO-8859-1 for backward compatibility.\n$config['password_charset'] = 'ISO-8859-1';\n\n\/\/ How many seconds must pass between emails sent by a user\n$config['sendmail_delay'] = 0;\n\n\/\/ Maximum number of recipients per message. Default: 0 (no limit)\n$config['max_recipients'] = 0; \n\n\/\/ Maximum allowed number of members of an address group. Default: 0 (no limit)\n\/\/ If 'max_recipients' is set this value should be less or equal\n$config['max_group_members'] = 0; \n\n\/\/ Name your service. This is displayed on the login screen and in the window title\n$config['product_name'] = 'Roundcube Webmail';\n\n\/\/ Add this user-agent to message headers when sending\n$config['useragent'] = 'Roundcube Webmail\/'.RCMAIL_VERSION;\n\n\/\/ try to load host-specific configuration\n\/\/ see http:\/\/trac.roundcube.net\/wiki\/Howto_Config for more details\n$config['include_host_config'] = false;\n\n\/\/ path to a text file which will be added to each sent message\n\/\/ paths are relative to the Roundcube root folder\n$config['generic_message_footer'] = '';\n\n\/\/ path to a text file which will be added to each sent HTML message\n\/\/ paths are relative to the Roundcube root folder\n$config['generic_message_footer_html'] = '';\n\n\/\/ add a received header to outgoing mails containing the creators IP and hostname\n$config['http_received_header'] = false;\n\n\/\/ Whether or not to encrypt the IP address and the host name\n\/\/ these could, in some circles, be considered as sensitive information;\n\/\/ however, for the administrator, these could be invaluable help\n\/\/ when tracking down issues.\n$config['http_received_header_encrypt'] = false;\n\n\/\/ This string is used as a delimiter for message headers when sending\n\/\/ a message via mail() function. Leave empty for auto-detection\n$config['mail_header_delimiter'] = NULL;\n\n\/\/ number of chars allowed for line when wrapping text.\n\/\/ text wrapping is done when composing\/sending messages\n$config['line_length'] = 72;\n\n\/\/ send plaintext messages as format=flowed\n$config['send_format_flowed'] = true;\n\n\/\/ According to RFC2298, return receipt envelope sender address must be empty.\n\/\/ If this option is true, Roundcube will use user's identity as envelope sender for MDN responses.\n$config['mdn_use_from'] = false;\n\n\/\/ Set identities access level:\n\/\/ 0 - many identities with possibility to edit all params\n\/\/ 1 - many identities with possibility to edit all params but not email address\n\/\/ 2 - one identity with possibility to edit all params\n\/\/ 3 - one identity with possibility to edit all params but not email address\n\/\/ 4 - one identity with possibility to edit only signature\n$config['identities_level'] = 0;\n\n\/\/ Maximum size of uploaded image in kilobytes\n\/\/ Images (in html signatures) are stored in database as data URIs\n$config['identity_image_size'] = 64;\n\n\/\/ Mimetypes supported by the browser.\n\/\/ attachments of these types will open in a preview window\n\/\/ either a comma-separated list or an array: 'text\/plain,text\/html,text\/xml,image\/jpeg,image\/gif,image\/png,application\/pdf'\n$config['client_mimetypes'] = null; # null == default\n\n\/\/ Path to a local mime magic database file for PHPs finfo extension.\n\/\/ Set to null if the default path should be used.\n$config['mime_magic'] = null;\n\n\/\/ Absolute path to a local mime.types mapping table file.\n\/\/ This is used to derive mime-types from the filename extension or vice versa.\n\/\/ Such a file is usually part of the apache webserver. If you don't find a file named mime.types on your system,\n\/\/ download it from http:\/\/svn.apache.org\/repos\/asf\/httpd\/httpd\/trunk\/docs\/conf\/mime.types\n$config['mime_types'] = null;\n\n\/\/ path to imagemagick identify binary (if not set we'll use Imagick or GD extensions)\n$config['im_identify_path'] = null;\n\n\/\/ path to imagemagick convert binary (if not set we'll use Imagick or GD extensions)\n$config['im_convert_path'] = null;\n\n\/\/ Size of thumbnails from image attachments displayed below the message content.\n\/\/ Note: whether images are displayed at all depends on the 'inline_images' option.\n\/\/ Set to 0 to display images in full size.\n$config['image_thumbnail_size'] = 240;\n\n\/\/ maximum size of uploaded contact photos in pixel\n$config['contact_photo_size'] = 160;\n\n\/\/ Enable DNS checking for e-mail address validation\n$config['email_dns_check'] = false;\n\n\/\/ Disables saving sent messages in Sent folder (like gmail) (Default: false)\n\/\/ Note: useful when SMTP server stores sent mail in user mailbox\n$config['no_save_sent_messages'] = false;\n\n\/\/ Improve system security by using special URL with security token.\n\/\/ This can be set to a number defining token length. Default: 16.\n\/\/ Warning: This requires http server configuration. Sample:\n\/\/ RewriteRule ^\/roundcubemail\/[a-f0-9]{16}\/(.*) \/roundcubemail\/$1 [PT]\n\/\/ Alias \/roundcubemail \/var\/www\/roundcubemail\/\n\/\/ Note: Use assets_path to not prevent the browser from caching assets\n$config['use_secure_urls'] = false;\n\n\/\/ Allows to define separate server\/path for image\/js\/css files\n\/\/ Warning: If the domain is different cross-domain access to some\n\/\/ resources need to be allowed\n\/\/ Sample:\n\/\/ \n\/\/ Header set Access-Control-Allow-Origin \"*\"\n\/\/ <\/FilesMatch>\n$config['assets_path'] = '';\n\n\/\/ While assets_path is for the browser, assets_dir informs\n\/\/ PHP code about the location of asset files in filesystem\n$config['assets_dir'] = '';\n\n\n\/\/ ----------------------------------\n\/\/ PLUGINS\n\/\/ ----------------------------------\n\n\/\/ List of active plugins (in plugins\/ directory)\n$config['plugins'] = array('cpanellogin','cpanellogout','archive','calendar', 'return_to_webmail','carddav');\n\n\/\/ ----------------------------------\n\/\/ USER INTERFACE\n\/\/ ----------------------------------\n\n\/\/ default messages sort column. Use empty value for default server's sorting, \n\/\/ or 'arrival', 'date', 'subject', 'from', 'to', 'fromto', 'size', 'cc'\n$config['message_sort_col'] = '';\n\n\/\/ default messages sort order\n$config['message_sort_order'] = 'DESC';\n\n\/\/ These cols are shown in the message list. Available cols are:\n\/\/ subject, from, to, fromto, cc, replyto, date, size, status, flag, attachment, 'priority'\n$config['list_cols'] = array('subject', 'status', 'fromto', 'date', 'size', 'flag', 'attachment');\n\n\/\/ the default locale setting (leave empty for auto-detection)\n\/\/ RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR\n$config['language'] = null;\n\n\/\/ use this format for date display (date or strftime format)\n$config['date_format'] = 'Y-m-d';\n\n\/\/ give this choice of date formats to the user to select from\n\/\/ Note: do not use ambiguous formats like m\/d\/Y\n$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');\n\n\/\/ use this format for time display (date or strftime format)\n$config['time_format'] = 'H:i';\n\n\/\/ give this choice of time formats to the user to select from\n$config['time_formats'] = array('G:i', 'H:i', 'g:i a', 'h:i A');\n\n\/\/ use this format for short date display (derived from date_format and time_format)\n$config['date_short'] = 'D H:i';\n\n\/\/ use this format for detailed date\/time formatting (derived from date_format and time_format)\n$config['date_long'] = 'Y-m-d H:i';\n\n\/\/ store draft message is this mailbox\n\/\/ leave blank if draft messages should not be stored\n\/\/ NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)\n$config['drafts_mbox'] = 'INBOX.Drafts';\n\n\/\/ store spam messages in this mailbox\n\/\/ NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)\n$config['junk_mbox'] = 'INBOX.Junk';\n\n\/\/ store sent message is this mailbox\n\/\/ leave blank if sent messages should not be stored\n\/\/ NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)\n$config['sent_mbox'] = 'INBOX.Sent';\n\n\/\/ move messages to this folder when deleting them\n\/\/ leave blank if they should be deleted directly\n\/\/ NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)\n$config['trash_mbox'] = 'INBOX.Trash';\n\n\/\/ automatically create the above listed default folders on user login\n$config['create_default_folders'] = true;\n\n\/\/ protect the default folders from renames, deletes, and subscription changes\n$config['protect_default_folders'] = true;\n\n\/\/ Disable localization of the default folder names listed above\n$config['show_real_foldernames'] = false;\n\n\/\/ if in your system 0 quota means no limit set this option to true \n$config['quota_zero_as_unlimited'] = false;\n\n\/\/ Make use of the built-in spell checker. It is based on GoogieSpell.\n$config['enable_spellcheck'] = false;\n\n\/\/ Enables spellchecker exceptions dictionary.\n\/\/ Setting it to 'shared' will make the dictionary shared by all users.\n$config['spellcheck_dictionary'] = false;\n\n\/\/ Set the spell checking engine. Possible values:\n\/\/ - 'googie' - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting)\n\/\/ - 'pspell' - requires the PHP Pspell module and aspell installed\n\/\/ - 'enchant' - requires the PHP Enchant module\n\/\/ - 'atd' - install your own After the Deadline server or check with the people at http:\/\/www.afterthedeadline.com before using their API\n\/\/ Since Google shut down their public spell checking service, the default settings\n\/\/ connect to http:\/\/spell.roundcube.net which is a hosted service provided by Roundcube.\n\/\/ You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly.\n$config['spellcheck_engine'] = 'googie';\n\n\/\/ For locally installed Nox Spell Server or After the Deadline services,\n\/\/ please specify the URI to call it.\n\/\/ Get Nox Spell Server from http:\/\/orangoo.com\/labs\/?page_id=72 or\n\/\/ the After the Deadline package from http:\/\/www.afterthedeadline.com.\n\/\/ Leave empty to use the public API of service.afterthedeadline.com\n$config['spellcheck_uri'] = '';\n\n\/\/ These languages can be selected for spell checking.\n\/\/ Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');\n\/\/ Leave empty for default set of available language.\n$config['spellcheck_languages'] = NULL;\n\n\/\/ Makes that words with all letters capitalized will be ignored (e.g. GOOGLE)\n$config['spellcheck_ignore_caps'] = false;\n\n\/\/ Makes that words with numbers will be ignored (e.g. g00gle)\n$config['spellcheck_ignore_nums'] = false;\n\n\/\/ Makes that words with symbols will be ignored (e.g. g@@gle)\n$config['spellcheck_ignore_syms'] = false;\n\n\/\/ Use this char\/string to separate recipients when composing a new message\n$config['recipients_separator'] = ',';\n\n\/\/ Number of lines at the end of a message considered to contain the signature.\n\/\/ Increase this value if signatures are not properly detected and colored\n$config['sig_max_lines'] = 15;\n\n\/\/ don't let users set pagesize to more than this value if set\n$config['max_pagesize'] = 200;\n\n\/\/ Minimal value of user's 'refresh_interval' setting (in seconds)\n$config['min_refresh_interval'] = 60;\n\n\/\/ Enables files upload indicator. Requires APC installed and enabled apc.rfc1867 option.\n\/\/ By default refresh time is set to 1 second. You can set this value to true\n\/\/ or any integer value indicating number of seconds.\n$config['upload_progress'] = false;\n\n\/\/ Specifies for how many seconds the Undo button will be available\n\/\/ after object delete action. Currently used with supporting address book sources.\n\/\/ Setting it to 0, disables the feature.\n$config['undo_timeout'] = 0;\n\n\/\/ A static list of canned responses which are immutable for the user\n$config['compose_responses_static'] = array(\n\/\/ array('name' => 'Canned Response 1', 'text' => 'Static Response One'),\n\/\/ array('name' => 'Canned Response 2', 'text' => 'Static Response Two'),\n);\n\n\/\/ ----------------------------------\n\/\/ ADDRESSBOOK SETTINGS\n\/\/ ----------------------------------\n\n\/\/ This indicates which type of address book to use. Possible choises:\n\/\/ 'sql' (default), 'ldap' and ''.\n\/\/ If set to 'ldap' then it will look at using the first writable LDAP\n\/\/ address book as the primary address book and it will not display the\n\/\/ SQL address book in the 'Address Book' view.\n\/\/ If set to '' then no address book will be displayed or only the\n\/\/ addressbook which is created by a plugin (like CardDAV).\n$config['address_book_type'] = 'sql';\n\n\/\/ In order to enable public ldap search, configure an array like the Verisign\n\/\/ example further below. if you would like to test, simply uncomment the example.\n\/\/ Array key must contain only safe characters, ie. a-zA-Z0-9_\n$config['ldap_public'] = array();\n\n\/\/ If you are going to use LDAP for individual address books, you will need to \n\/\/ set 'user_specific' to true and use the variables to generate the appropriate DNs to access it.\n\/\/\n\/\/ The recommended directory structure for LDAP is to store all the address book entries\n\/\/ under the users main entry, e.g.:\n\/\/\n\/\/ o=root\n\/\/ ou=people\n\/\/ uid=user@domain\n\/\/ mail=contact@contactdomain\n\/\/\n\/\/ So the base_dn would be uid=%fu,ou=people,o=root\n\/\/ The bind_dn would be the same as based_dn or some super user login.\n\/* \n * example config for Verisign directory\n *\n$config['ldap_public']['Verisign'] = array(\n 'name' => 'Verisign.com',\n \/\/ Replacement variables supported in host names:\n \/\/ %h - user's IMAP hostname\n \/\/ %n - hostname ($_SERVER['SERVER_NAME'])\n \/\/ %t - hostname without the first part\n \/\/ %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)\n \/\/ %z - IMAP domain (IMAP hostname without the first part)\n \/\/ For example %n = mail.domain.tld, %t = domain.tld\n 'hosts' => array('directory.verisign.com'),\n 'port' => 389,\n 'use_tls' => false,\n 'ldap_version' => 3, \/\/ using LDAPv3\n 'network_timeout' => 10, \/\/ The timeout (in seconds) for connect + bind arrempts. This is only supported in PHP >= 5.3.0 with OpenLDAP 2.x\n 'user_specific' => false, \/\/ If true the base_dn, bind_dn and bind_pass default to the user's IMAP login.\n \/\/ When 'user_specific' is enabled following variables can be used in base_dn\/bind_dn config:\n \/\/ %fu - The full username provided, assumes the username is an email\n \/\/ address, uses the username_domain value if not an email address.\n \/\/ %u - The username prior to the '@'.\n \/\/ %d - The domain name after the '@'.\n \/\/ %dc - The domain name hierarchal string e.g. \"dc=test,dc=domain,dc=com\"\n \/\/ %dn - DN found by ldap search when search_filter\/search_base_dn are used\n 'base_dn' => '',\n 'bind_dn' => '',\n 'bind_pass' => '',\n \/\/ It's possible to bind for an individual address book\n \/\/ The login name is used to search for the DN to bind with\n 'search_base_dn' => '',\n 'search_filter' => '', \/\/ e.g. '(&(objectClass=posixAccount)(uid=%u))'\n \/\/ DN and password to bind as before searching for bind DN, if anonymous search is not allowed\n 'search_bind_dn' => '',\n 'search_bind_pw' => '',\n \/\/ Base DN and filter used for resolving the user's domain root DN which feeds the %dc variables\n \/\/ Leave empty to skip this lookup and derive the root DN from the username domain\n 'domain_base_dn' => '',\n 'domain_filter' => '',\n \/\/ Optional map of replacement strings => attributes used when binding for an individual address book\n 'search_bind_attrib' => array(), \/\/ e.g. array('%udc' => 'ou')\n \/\/ Default for %dn variable if search doesn't return DN value\n 'search_dn_default' => '',\n \/\/ Optional authentication identifier to be used as SASL authorization proxy\n \/\/ bind_dn need to be empty\n 'auth_cid' => '',\n \/\/ SASL authentication method (for proxy auth), e.g. DIGEST-MD5\n 'auth_method' => '',\n \/\/ Indicates if the addressbook shall be hidden from the list.\n \/\/ With this option enabled you can still search\/view contacts.\n 'hidden' => false,\n \/\/ Indicates if the addressbook shall not list contacts but only allows searching.\n 'searchonly' => false,\n \/\/ Indicates if we can write to the LDAP directory or not.\n \/\/ If writable is true then these fields need to be populated:\n \/\/ LDAP_Object_Classes, required_fields, LDAP_rdn\n 'writable' => false,\n \/\/ To create a new contact these are the object classes to specify\n \/\/ (or any other classes you wish to use).\n 'LDAP_Object_Classes' => array('top', 'inetOrgPerson'),\n \/\/ The RDN field that is used for new entries, this field needs\n \/\/ to be one of the search_fields, the base of base_dn is appended\n \/\/ to the RDN to insert into the LDAP directory.\n 'LDAP_rdn' => 'cn',\n \/\/ The required fields needed to build a new contact as required by\n \/\/ the object classes (can include additional fields not required by the object classes).\n 'required_fields' => array('cn', 'sn', 'mail'),\n 'search_fields' => array('mail', 'cn'), \/\/ fields to search in\n \/\/ mapping of contact fields to directory attributes\n \/\/ 1. for every attribute one can specify the number of values (limit) allowed.\n \/\/ default is 1, a wildcard * means unlimited\n \/\/ 2. another possible parameter is separator character for composite fields\n \/\/ 3. it's possible to define field format for write operations, e.g. for date fields\n \/\/ example: 'birthday:date[YmdHis\\\\Z]'\n 'fieldmap' => array(\n \/\/ Roundcube => LDAP:limit\n 'name' => 'cn',\n 'surname' => 'sn',\n 'firstname' => 'givenName',\n 'jobtitle' => 'title',\n 'email' => 'mail:*',\n 'phone:home' => 'homePhone',\n 'phone:work' => 'telephoneNumber',\n 'phone:mobile' => 'mobile',\n 'phone:pager' => 'pager',\n 'phone:workfax' => 'facsimileTelephoneNumber',\n 'street' => 'street',\n 'zipcode' => 'postalCode',\n 'region' => 'st',\n 'locality' => 'l',\n \/\/ if you country is a complex object, you need to configure 'sub_fields' below\n 'country' => 'c',\n 'organization' => 'o',\n 'department' => 'ou',\n 'jobtitle' => 'title',\n 'notes' => 'description',\n 'photo' => 'jpegPhoto',\n \/\/ these currently don't work:\n \/\/ 'manager' => 'manager',\n \/\/ 'assistant' => 'secretary',\n ),\n \/\/ Map of contact sub-objects (attribute name => objectClass(es)), e.g. 'c' => 'country'\n 'sub_fields' => array(),\n \/\/ Generate values for the following LDAP attributes automatically when creating a new record\n 'autovalues' => array(\n \/\/ 'uid' => 'md5(microtime())', \/\/ You may specify PHP code snippets which are then eval'ed \n \/\/ 'mail' => '{givenname}.{sn}@mydomain.com', \/\/ or composite strings with placeholders for existing attributes\n ),\n 'sort' => 'cn', \/\/ The field to sort the listing by.\n 'scope' => 'sub', \/\/ search mode: sub|base|list\n 'filter' => '(objectClass=inetOrgPerson)', \/\/ used for basic listing (if not empty) and will be &'d with search queries. example: status=act\n 'fuzzy_search' => true, \/\/ server allows wildcard search\n 'vlv' => false, \/\/ Enable Virtual List View to more efficiently fetch paginated data (if server supports it)\n 'vlv_search' => false, \/\/ Use Virtual List View functions for autocompletion searches (if server supports it)\n '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\n 'config_root_dn' => 'cn=config', \/\/ Root DN to search config entries (e.g. vlv indexes)\n 'sizelimit' => '0', \/\/ Enables you to limit the count of entries fetched. Setting this to 0 means no limit.\n 'timelimit' => '0', \/\/ Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.\n 'referrals' => false, \/\/ Sets the LDAP_OPT_REFERRALS option. Mostly used in multi-domain Active Directory setups\n 'dereference' => 0, \/\/ Sets the LDAP_OPT_DEREF option. One of: LDAP_DEREF_NEVER, LDAP_DEREF_SEARCHING, LDAP_DEREF_FINDING, LDAP_DEREF_ALWAYS\n \/\/ Used where addressbook contains aliases to objects elsewhere in the LDAP tree.\n\n \/\/ definition for contact groups (uncomment if no groups are supported)\n \/\/ for the groups base_dn, the user replacements %fu, %u, $d and %dc work as for base_dn (see above)\n \/\/ if the groups base_dn is empty, the contact base_dn is used for the groups as well\n \/\/ -> in this case, assure that groups and contacts are separated due to the concernig filters! \n 'groups' => array(\n 'base_dn' => '',\n 'scope' => 'sub', \/\/ Search mode: sub|base|list\n 'filter' => '(objectClass=groupOfNames)',\n 'object_classes' => array('top', 'groupOfNames'), \/\/ Object classes to be assigned to new groups\n 'member_attr' => 'member', \/\/ Name of the default member attribute, e.g. uniqueMember\n 'name_attr' => 'cn', \/\/ Attribute to be used as group name\n 'email_attr' => 'mail', \/\/ Group email address attribute (e.g. for mailing lists)\n 'member_filter' => '(objectclass=*)', \/\/ Optional filter to use when querying for group members\n 'vlv' => false, \/\/ Use VLV controls to list groups\n 'class_member_attr' => array( \/\/ Mapping of group object class to member attribute used in these objects\n 'groupofnames' => 'member',\n 'groupofuniquenames' => 'uniquemember'\n ),\n ),\n \/\/ this configuration replaces the regular groups listing in the directory tree with\n \/\/ a hard-coded list of groups, each listing entries with the configured base DN and filter.\n \/\/ if the 'groups' option from above is set, it'll be shown as the first entry with the name 'Groups'\n 'group_filters' => array(\n 'departments' => array(\n 'name' => 'Company Departments',\n 'scope' => 'list',\n 'base_dn' => 'ou=Groups,dc=mydomain,dc=com',\n 'filter' => '(|(objectclass=groupofuniquenames)(objectclass=groupofurls))',\n 'name_attr' => 'cn',\n ),\n 'customers' => array(\n 'name' => 'Customers',\n 'scope' => 'sub',\n 'base_dn' => 'ou=Customers,dc=mydomain,dc=com',\n 'filter' => '(objectClass=inetOrgPerson)',\n 'name_attr' => 'sn',\n ),\n ),\n);\n*\/\n\n\/\/ An ordered array of the ids of the addressbooks that should be searched\n\/\/ when populating address autocomplete fields server-side. ex: array('sql','Verisign');\n$config['autocomplete_addressbooks'] = array('sql');\n\n\/\/ The minimum number of characters required to be typed in an autocomplete field\n\/\/ before address books will be searched. Most useful for LDAP directories that\n\/\/ may need to do lengthy results building given overly-broad searches\n$config['autocomplete_min_length'] = 1;\n\n\/\/ Number of parallel autocomplete requests.\n\/\/ If there's more than one address book, n parallel (async) requests will be created,\n\/\/ where each request will search in one address book. By default (0), all address\n\/\/ books are searched in one request.\n$config['autocomplete_threads'] = 0;\n\n\/\/ Max. numer of entries in autocomplete popup. Default: 15.\n$config['autocomplete_max'] = 15;\n\n\/\/ show address fields in this order\n\/\/ available placeholders: {street}, {locality}, {zipcode}, {country}, {region}\n$config['address_template'] = '{street}{locality} {zipcode}{country} {region}';\n\n\/\/ Matching mode for addressbook search (including autocompletion)\n\/\/ 0 - partial (*abc*), default\n\/\/ 1 - strict (abc)\n\/\/ 2 - prefix (abc*)\n\/\/ Note: For LDAP sources fuzzy_search must be enabled to use 'partial' or 'prefix' mode\n$config['addressbook_search_mode'] = 0;\n\n\/\/ List of fields used on contacts list and for autocompletion searches\n\/\/ Warning: These are field names not LDAP attributes (see 'fieldmap' setting)!\n$config['contactlist_fields'] = array('name', 'firstname', 'surname', 'email');\n\n\/\/ Template of contact entry on the autocompletion list.\n\/\/ You can use contact fields as: name, email, organization, department, etc.\n\/\/ See program\/steps\/addressbook\/func.inc for a list\n$config['contact_search_name'] = '{name} <{email}>';\n\n\/\/ ----------------------------------\n\/\/ USER PREFERENCES\n\/\/ ----------------------------------\n\n\/\/ Use this charset as fallback for message decoding\n\/\/$config['default_charset'] = 'ISO-8859-1';\n\n\/\/ skin name: folder from skins\/\n$config['skin'] = 'elastic';\n$config['skins_allowed'] = [ 'elastic', 'larry' ];\n\n\/\/ Enables using standard browser windows (that can be handled as tabs)\n\/\/ instead of popup windows\n$config['standard_windows'] = false;\n\n\/\/ show up to X items in messages list view\n$config['mail_pagesize'] = 50;\n\n\/\/ show up to X items in contacts list view\n$config['addressbook_pagesize'] = 50;\n\n\/\/ sort contacts by this col (preferably either one of name, firstname, surname)\n$config['addressbook_sort_col'] = 'surname';\n\n\/\/ the way how contact names are displayed in the list\n\/\/ 0: display name\n\/\/ 1: (prefix) firstname middlename surname (suffix)\n\/\/ 2: (prefix) surname firstname middlename (suffix)\n\/\/ 3: (prefix) surname, firstname middlename (suffix)\n$config['addressbook_name_listing'] = 0;\n\n\/\/ use this timezone to display date\/time\n\/\/ valid timezone identifers are listed here: php.net\/manual\/en\/timezones.php\n\/\/ 'auto' will use the browser's timezone settings\n$config['timezone'] = 'auto';\n\n\/\/ prefer displaying HTML messages\n$config['prefer_html'] = true;\n\n\/\/ display remote inline images\n\/\/ 0 - Never, always ask\n\/\/ 1 - Ask if sender is not in address book\n\/\/ 2 - Always show inline images\n$config['show_images'] = 0;\n\n\/\/ open messages in new window\n$config['message_extwin'] = false;\n\n\/\/ open message compose form in new window\n$config['compose_extwin'] = false;\n\n\/\/ compose html formatted messages by default\n\/\/ 0 - never,\n\/\/ 1 - always,\n\/\/ 2 - on reply to HTML message,\n\/\/ 3 - on forward or reply to HTML message\n\/\/ 4 - always, except when replying to plain text message\n$config['htmleditor'] = 0;\n\n\/\/ save copies of compose messages in the browser's local storage\n\/\/ for recovery in case of browser crashes and session timeout.\n$config['compose_save_localstorage'] = true;\n\n\/\/ show pretty dates as standard\n$config['prettydate'] = true;\n\n\/\/ save compose message every 300 seconds (5min)\n$config['draft_autosave'] = 300;\n\n\/\/ default setting if preview pane is enabled\n$config['preview_pane'] = false;\n\n\/\/ Mark as read when viewed in preview pane (delay in seconds)\n\/\/ Set to -1 if messages in preview pane should not be marked as read\n$config['preview_pane_mark_read'] = 0;\n\n\/\/ Clear Trash on logout\n$config['logout_purge'] = false;\n\n\/\/ Compact INBOX on logout\n$config['logout_expunge'] = false;\n\n\/\/ Display attached images below the message body \n$config['inline_images'] = true;\n\n\/\/ Encoding of long\/non-ascii attachment names:\n\/\/ 0 - Full RFC 2231 compatible\n\/\/ 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)\n\/\/ 2 - Full 2047 compatible\n$config['mime_param_folding'] = 1;\n\n\/\/ Set true if deleted messages should not be displayed\n\/\/ This will make the application run slower\n$config['skip_deleted'] = false;\n\n\/\/ Set true to Mark deleted messages as read as well as deleted\n\/\/ False means that a message's read status is not affected by marking it as deleted\n$config['read_when_deleted'] = true;\n\n\/\/ Set to true to never delete messages immediately\n\/\/ Use 'Purge' to remove messages marked as deleted\n$config['flag_for_deletion'] = false;\n\n\/\/ Default interval for auto-refresh requests (in seconds)\n\/\/ These are requests for system state updates e.g. checking for new messages, etc.\n\/\/ Setting it to 0 disables the feature.\n$config['refresh_interval'] = 60;\n\n\/\/ If true all folders will be checked for recent messages\n$config['check_all_folders'] = false;\n\n\/\/ If true, after message delete\/move, the next message will be displayed\n$config['display_next'] = true;\n\n\/\/ Default messages listing mode. One of 'threads' or 'list'.\n$config['default_list_mode'] = 'list';\n\n\/\/ 0 - Do not expand threads\n\/\/ 1 - Expand all threads automatically\n\/\/ 2 - Expand only threads with unread messages\n$config['autoexpand_threads'] = 0;\n\n\/\/ When replying:\n\/\/ -1 - don't cite the original message\n\/\/ 0 - place cursor below the original message\n\/\/ 1 - place cursor above original message (top posting)\n$config['reply_mode'] = 0;\n\n\/\/ When replying strip original signature from message\n$config['strip_existing_sig'] = true;\n\n\/\/ Show signature:\n\/\/ 0 - Never\n\/\/ 1 - Always\n\/\/ 2 - New messages only\n\/\/ 3 - Forwards and Replies only\n$config['show_sig'] = 1;\n\n\/\/ By default the signature is placed depending on cursor position (reply_mode).\n\/\/ Sometimes it might be convenient to start the reply on top but keep\n\/\/ the signature below the quoted text (sig_below = true).\n$config['sig_below'] = false;\n\n\/\/ Enables adding of standard separator to the signature\n$config['sig_separator'] = true;\n\n\/\/ Use MIME encoding (quoted-printable) for 8bit characters in message body\n$config['force_7bit'] = false;\n\n\/\/ Defaults of the search field configuration.\n\/\/ The array can contain a per-folder list of header fields which should be considered when searching\n\/\/ The entry with key '*' stands for all folders which do not have a specific list set.\n\/\/ Please note that folder names should to be in sync with $config['*_mbox'] options\n$config['search_mods'] = null; \/\/ Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1));\n\n\/\/ Defaults of the addressbook search field configuration.\n$config['addressbook_search_mods'] = null; \/\/ Example: array('name'=>1, 'firstname'=>1, 'surname'=>1, 'email'=>1, '*'=>1);\n\n\/\/ 'Delete always'\n\/\/ This setting reflects if mail should be always deleted\n\/\/ when moving to Trash fails. This is necessary in some setups\n\/\/ when user is over quota and Trash is included in the quota.\n$config['delete_always'] = false;\n\n\/\/ Directly delete messages in Junk instead of moving to Trash\n$config['delete_junk'] = false;\n\n\/\/ Behavior if a received message requests a message delivery notification (read receipt)\n\/\/ 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask)\n\/\/ 3 = send automatically if sender is in addressbook, otherwise ask the user\n\/\/ 4 = send automatically if sender is in addressbook, otherwise ignore\n$config['mdn_requests'] = 0;\n\n\/\/ Return receipt checkbox default state\n$config['mdn_default'] = 0;\n\n\/\/ Delivery Status Notification checkbox default state\n\/\/ Note: This can be used only if smtp_server is non-empty\n$config['dsn_default'] = 0;\n\n\/\/ Place replies in the folder of the message being replied to\n$config['reply_same_folder'] = false;\n\n\/\/ Sets default mode of Forward feature to \"forward as attachment\"\n$config['forward_attachment'] = false;\n\n\/\/ Defines address book (internal index) to which new contacts will be added\n\/\/ By default it is the first writeable addressbook.\n\/\/ Note: Use '0' for built-in address book.\n$config['default_addressbook'] = null;\n\n\/\/ Enables spell checking before sending a message.\n$config['spellcheck_before_send'] = false;\n\n\/\/ Skip alternative email addresses in autocompletion (show one address per contact)\n$config['autocomplete_single'] = false;\n\n\/\/ Default font for composed HTML message.\n\/\/ Supported values: Andale Mono, Arial, Arial Black, Book Antiqua, Courier New,\n\/\/ Georgia, Helvetica, Impact, Tahoma, Terminal, Times New Roman, Trebuchet MS, Verdana\n$config['default_font'] = 'Verdana';\n\n\/\/ Default font size for composed HTML message.\n\/\/ Supported sizes: 8pt, 10pt, 12pt, 14pt, 18pt, 24pt, 36pt\n$config['default_font_size'] = '10pt';\n\n\/\/ Enables display of email address with name instead of a name (and address in title)\n$config['message_show_email'] = false;\n\n\/\/ Default behavior of Reply-All button:\n\/\/ 0 - Reply-All always\n\/\/ 1 - Reply-List if mailing list is detected\n$config['reply_all_mode'] = 0;\n"}