Default pdo_mysql_ssl_verify to false

This commit is contained in:
the-djmaze 2022-03-10 12:41:41 +01:00
parent c725f9eebf
commit d4069fd835
2 changed files with 3 additions and 3 deletions

View file

@ -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')

View file

@ -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';