diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-26 14:45:05 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-11-07 12:14:02 +0100 |
commit | 5957a2bf6bfbb89c7c6b689e3eef89b7072fe3cf (patch) | |
tree | df20b4279431ea0c612d664572322083637e4d8e /core/js/setupchecks.js | |
parent | 506f3961ecf6616bac81f2c56d5e20d58ab435c6 (diff) | |
download | nextcloud-server-5957a2bf6bfbb89c7c6b689e3eef89b7072fe3cf.tar.gz nextcloud-server-5957a2bf6bfbb89c7c6b689e3eef89b7072fe3cf.zip |
Migrate email test to new SetupCheck API
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r-- | core/js/setupchecks.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index e94c334db66..04eed184c90 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -180,14 +180,6 @@ var afterCall = function(data, statusText, xhr) { var messages = []; if (xhr.status === 200 && data) { - if (!data.wasEmailTestSuccessful) { - messages.push({ - msg: t('core', 'You have not set or verified your email server configuration, yet. Please head over to the {mailSettingsStart}Basic settings{mailSettingsEnd} in order to set them. Afterwards, use the "Send email" button below the form to verify your settings.',) - .replace('{mailSettingsStart}', '<a href="' + OC.generateUrl('/settings/admin') + '">') - .replace('{mailSettingsEnd}', '</a>'), - type: OC.SetupChecks.MESSAGE_TYPE_INFO - }); - } if (!data.hasValidTransactionIsolationLevel) { messages.push({ msg: t('core', 'Your database does not run with "READ COMMITTED" transaction isolation level. This can cause problems when multiple actions are executed in parallel.'), |