mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 15:08:28 +03:00
Default pdo_mysql_ssl_verify to false
This commit is contained in:
parent
c725f9eebf
commit
d4069fd835
2 changed files with 3 additions and 3 deletions
|
|
@ -51,7 +51,7 @@ class ChangePasswordDriverPDO
|
|||
\RainLoop\Plugins\Property::NewInstance('pdo_mysql_ssl_verify')->SetLabel('MySQL SSL verify server cert')
|
||||
->SetType(\RainLoop\Enumerations\PluginPropertyType::BOOL)
|
||||
->SetDescription('Verify that certificate\'s Common Name of SAN matches the database server\'s hostname.')
|
||||
->SetDefaultValue(true),
|
||||
->SetDefaultValue(false),
|
||||
\RainLoop\Plugins\Property::NewInstance('pdo_mysql_ssl_ca')->SetLabel('MySQL SSL CA certificate file')
|
||||
->SetDescription('Path to a file containing the CA certificate used to sign the server certificate, or a CA bundle. Required for SSL/TLS connections to work.')
|
||||
->SetDefaultValue('/etc/pki/tls/certs/ca-bundle.crt')
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@ class ChangePasswordPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|||
{
|
||||
const
|
||||
NAME = 'Change Password',
|
||||
VERSION = '2.13',
|
||||
RELEASE = '2022-03-08',
|
||||
VERSION = '2.13.1',
|
||||
RELEASE = '2022-03-10',
|
||||
REQUIRED = '2.12.0',
|
||||
CATEGORY = 'Security',
|
||||
DESCRIPTION = 'Extension to allow users to change their passwords';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue