Don't show mail domain and from in config report
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
984953ef4a
commit
e6e79c34b1
|
@ -37,8 +37,11 @@ class SystemConfig {
|
||||||
|
|
||||||
/** @var array */
|
/** @var array */
|
||||||
protected $sensitiveValues = [
|
protected $sensitiveValues = [
|
||||||
|
'dbname' => true,
|
||||||
'dbpassword' => true,
|
'dbpassword' => true,
|
||||||
'dbuser' => true,
|
'dbuser' => true,
|
||||||
|
'mail_from_address' => true,
|
||||||
|
'mail_domain' => true,
|
||||||
'mail_smtpname' => true,
|
'mail_smtpname' => true,
|
||||||
'mail_smtppassword' => true,
|
'mail_smtppassword' => true,
|
||||||
'passwordsalt' => true,
|
'passwordsalt' => true,
|
||||||
|
|
Loading…
Reference in New Issue