X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=config%2Fconfig_local.example.php;h=0a64bb2e33f5081527a4275175bab1c7b7029918;hp=aeec2a19bf1bcfd3c48d14e8a7463ff41c9dfe77;hb=bd3ebe3f8f07fd1b4294a30ef0c09a641eea1e77;hpb=1977ab5587905d225c6288141b82f7a6e3d29d02 diff --git a/config/config_local.example.php b/config/config_local.example.php index aeec2a19..0a64bb2e 100644 --- a/config/config_local.example.php +++ b/config/config_local.example.php @@ -7,7 +7,7 @@ * Don't do it unless you know what you're doing. * Use standard PHP syntax, see config.php for examples. * - * @copyright 2002-2010 The SquirrelMail Project Team + * @copyright 2002-2017 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -27,7 +27,7 @@ * of custom PHP session handlers. This feature is well * documented in the code in include/init.php * - * hide_squirrelmail_header (must be defined as a constant: + * $hide_squirrelmail_header (must be defined as a constant: * define('hide_squirrelmail_header', 1); * This allows the administrator to force SquirrelMail never * to add its own Received headers with user information in @@ -47,5 +47,74 @@ * 4.3.0. Set to 'CRLF' or 'LF' or, to force line endings to be * unmolested, set to some other string, such as 'NOCHANGE' * + * $subfolders_of_inbox_are_special (boolean) can be set to TRUE + * if any subfolders of the INBOX should be treated as "special" + * (those that are displayed in a different color than other + * "normal" mailboxes). + * + * $hash_dirs_use_md5 (boolean) If set to TRUE, forces the + * hashed preferences directory calculation to use MD5 instead + * of CRC32. + * + * $hash_dirs_strip_domain (boolean) If set to TRUE, and if + * usernames are in full email address format, the domain + * part (beginning with "@") will be stripped before + * calculating the CRC or MD5. + * + * $smtp_stream_options allows more control over the SSL context + * used when connecting to the SMTP server over SSL/TLS. See: + * http://www.php.net/manual/context.php and in particular + * http://php.net/manual/context.ssl.php + * For example, you can specify a CA file that corresponds + * to your server's certificate and make sure that the + * server's certificate is validated when connecting: + * $smtp_stream_options = array( + * 'ssl' => array( + * 'cafile' => '/etc/pki/tls/certs/ca-bundle.crt', + * 'verify_peer' => true, + * 'verify_depth' => 3, + * ), + * ); + * + * $imap_stream_options allows more control over the SSL + * context used when connecting to the IMAP server over + * SSL/TLS. See: http://www.php.net/manual/context.php + * and in particular http://php.net/manual/context.ssl.php + * For example, you can specify a CA file that corresponds + * to your server's certificate and make sure that the + * server's certificate is validated when connecting: + * $imap_stream_options = array( + * 'ssl' => array( + * 'cafile' => '/etc/pki/tls/certs/ca-bundle.crt', + * 'verify_peer' => true, + * 'verify_depth' => 3, + * ), + * ); + * + * $disable_pdo (boolean) tells SquirrelMail not to use + * PDO to access the user preferences and address book + * databases as it normally would. When this is set to + * TRUE, Pear DB will be used instead, but this is not + * recommended. + * + * $pdo_show_sql_errors (boolean) causes the actual + * database error to be displayed when one is encountered. + * When set to FALSE, generic errors are displayed, + * preventing internal database information from being + * exposed. This should be set to TRUE only for debugging + * purposes. + * + * $pdo_identifier_quote_char (string) allows you to + * override the character used for quoting table and field + * names in database queries. Set this to the desired + * Quote character, for example: + * $pdo_identifier_quote_char = '"'; + * Or you can tell SquirrelMail not to quote identifiers + * at all by setting this to "none". When this setting + * is empty or not found, SquirrelMail will attempt to + * quote table and field names with what it thinks is + * the appropriate quote character for the database type + * being used (backtick for MySQL (and thus MariaDB), + * double quotes for all others). */