X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=config%2Fconfig_local.example.php;h=773385eb07dd19d880a15af34c370b3b8fc87d6c;hp=32413cff8d49d3b4194ef376f6d74cab297530e0;hb=36c59d842cfa1aadf349b367a9c1082ad58ac96b;hpb=55e346263751f3100c780b2d3aee268b6fa3232d diff --git a/config/config_local.example.php b/config/config_local.example.php index 32413cff..773385eb 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-2011 The SquirrelMail Project Team + * @copyright 2002-2015 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 @@ -52,5 +52,43 @@ * (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, + * ), + * ); */