diff options
author | Joas Schilling <coding@schilljs.com> | 2025-04-25 08:43:36 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-04-25 11:01:38 +0200 |
commit | 8524955091819756300d2d2127cc3f291cb85242 (patch) | |
tree | f5b3e69c75c289871d16c6c5d1733ec1994d7640 | |
parent | 1ae57fb054d4e88e0ddc50f0a3833e2e2845870e (diff) | |
download | nextcloud-server-bugfix/noid/censor-more-app-configs.tar.gz nextcloud-server-bugfix/noid/censor-more-app-configs.zip |
fix(config): Censor more app configs in system reportbugfix/noid/censor-more-app-configs
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | lib/private/AppConfig.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php index 1228b9c20e3..092d37c3338 100644 --- a/lib/private/AppConfig.php +++ b/lib/private/AppConfig.php @@ -1423,6 +1423,9 @@ class AppConfig implements IAppConfig { 'globalsiteselector' => [ '/^gss\.jwt\.key$/', ], + 'gpgmailer' => [ + '/^GpgServerKey$/', + ], 'integration_discourse' => [ '/^private_key$/', '/^public_key$/', @@ -1477,6 +1480,9 @@ class AppConfig implements IAppConfig { '/^client_secret$/', '/^oauth_instance_url$/', ], + 'maps' => [ + '/^mapboxAPIKEY$/', + ], 'notify_push' => [ '/^cookie$/', ], @@ -1514,12 +1520,12 @@ class AppConfig implements IAppConfig { '/^slogan$/', '/^url$/', ], - 'user_ldap' => [ - '/^(s..)?ldap_agent_password$/', - ], 'twofactor_gateway' => [ '/^.*token$/', ], + 'user_ldap' => [ + '/^(s..)?ldap_agent_password$/', + ], 'user_saml' => [ '/^idp-x509cert$/', ], |