X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=config%2Fconfig_local.example.php;h=eb425007f8878555ef1772fd0d7599f56ade00ca;hp=bcb482c672a5eac89a27b461d7ea83f8b309b50c;hb=0e6fd2f821eddd307a1c42df6c9362e2d19020e9;hpb=9ae70b623b5bda18ee4b60d9481d49d057b2f508;ds=sidebyside diff --git a/config/config_local.example.php b/config/config_local.example.php index bcb482c6..eb425007 100644 --- a/config/config_local.example.php +++ b/config/config_local.example.php @@ -54,26 +54,32 @@ * * $smtpSslOptions 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: * $smtpSslOptions = array( - * 'cafile' => '/etc/pki/tls/certs/ca-bundle.crt', - * 'verify_peer' => true, - * 'verify_depth' => 3, + * 'ssl' => array( + * 'cafile' => '/etc/pki/tls/certs/ca-bundle.crt', + * 'verify_peer' => true, + * 'verify_depth' => 3, + * ), * ); * * $imapSslOptions 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: * $imapSslOptions = array( - * 'cafile' => '/etc/pki/tls/certs/ca-bundle.crt', - * 'verify_peer' => true, - * 'verify_depth' => 3, + * 'ssl' => array( + * 'cafile' => '/etc/pki/tls/certs/ca-bundle.crt', + * 'verify_peer' => true, + * 'verify_depth' => 3, + * ), * ); */