diff options
author | Joas Schilling <coding@schilljs.com> | 2017-07-07 09:53:55 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-07-07 09:53:55 +0200 |
commit | e6e79c34b146bd5729ef12a0571c67818c169f7b (patch) | |
tree | 4f80baee22567da4327a5b2bfe0e17d5ab055dbc /lib/private/SystemConfig.php | |
parent | 984953ef4a5917e672118a96e3b3714862011308 (diff) | |
download | nextcloud-server-e6e79c34b146bd5729ef12a0571c67818c169f7b.tar.gz nextcloud-server-e6e79c34b146bd5729ef12a0571c67818c169f7b.zip |
Don't show mail domain and from in config report
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/SystemConfig.php')
-rw-r--r-- | lib/private/SystemConfig.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index e5f1adaf004..3610486140d 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -37,8 +37,11 @@ class SystemConfig { /** @var array */ protected $sensitiveValues = [ + 'dbname' => true, 'dbpassword' => true, 'dbuser' => true, + 'mail_from_address' => true, + 'mail_domain' => true, 'mail_smtpname' => true, 'mail_smtppassword' => true, 'passwordsalt' => true, |