The checkup reports (erroneously) that encrypted support ticket functionality has not been enabled.
, yet it is enabled; so this checkup is broken and all tests pass.
It does note that I have customized a few options in application_config.js, however none of these options should disable the delete account button.
// SPDX-FileCopyrightText: 2023 XWiki CryptPad Team <contact@cryptpad.org> and contributors
//
// SPDX-License-Identifier: AGPL-3.0-or-later
/*
* You can override the configurable values from this file.
* The recommended method is to make a copy of this file (/customize.dist/application_config.js)
in a 'customize' directory (/customize/application_config.js).
* If you want to check all the configurable values, you can open the internal configuration file
but you should not change it directly (/common/application_config_internal.js)
*/
define(['/common/application_config_internal.js'], function (AppConfig) {
// Example: If you want to remove the survey link in the menu:
// AppConfig.surveyURL = "";
// To inform users of the support ticket panel which languages your admins speak:
//AppConfig.supportLanguages = [ 'en', 'fr' ];
// Prevent anonymous users from storing pads in their drive
// NOTE: this is only enforced client-side as the server does not distinguish between users drives and pads
AppConfig.disableAnonymousStore = true;
// Prevent anonymous users from creating new pads (they can still access and edit existing ones)
// NOTE: this is only enforced client-side and will not prevent malicious clients from storing data
AppConfig.disableAnonymousPadCreation = true;
// Disable feedback for all the users and hide the settings part about feedback
AppConfig.disableFeedback = true;
return AppConfig;
});
In this photo you can see there is no delete button, neither big nor red.
@Mathilde -- could you provide some further clarity on which configuration error I have made to break this functionality or re-open the bug with the necessary supplemental details which were missing to keep it open originally?