redact invalid passwords
This commit is contained in:
parent
6f532ea513
commit
d31cf95fe2
|
@ -15,7 +15,7 @@
|
|||
// for Mysql: key, cipher, cert, capath, ca, verify_server_cert,
|
||||
// for Postgres: application_name, sslmode, sslcert, sslkey, sslrootcert, sslcrl, sslcompression, service.
|
||||
// e.g. 'mysql://roundcube:@localhost/roundcubemail?verify_server_cert=false'
|
||||
$config['db_dsnw'] = 'pgsql://roundcube:yzY%24gJ8%24e9%265njTQPZ8B@localhost/roundcube';
|
||||
$config['db_dsnw'] = 'pgsql://roundcube:<REDACTED>@localhost/roundcube';
|
||||
|
||||
// ----------------------------------
|
||||
// LOGGING/DEBUGGING
|
||||
|
@ -106,7 +106,7 @@ $config['ip_check'] = true;
|
|||
// in the session. For historical reasons it's called DES_key, but it's used
|
||||
// with any configured cipher_method (see below).
|
||||
// For the default cipher_method a required key length is 24 characters.
|
||||
$config['des_key'] = 'GAVmASV5xdwSdt83cYVquyeo';
|
||||
$config['des_key'] = '<REDACTED>';
|
||||
|
||||
// Name your service. This is displayed on the login screen and in the window title
|
||||
$config['product_name'] = 'Webmail des membres de Libre en Communs';
|
||||
|
|
Loading…
Reference in New Issue