diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-10-08 22:40:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 22:40:37 +0200 |
commit | 0dbb99a81bc39cee97f6644faef5bec24881b69c (patch) | |
tree | 80ec2f25d80c1e33034f274049234a9dc2b3d588 /core | |
parent | b2dedbcc13982dac51e15432c75cd98856520e2b (diff) | |
parent | 9c8e8007f98ad45f59101a75c9b8037f48b504dc (diff) | |
download | nextcloud-server-0dbb99a81bc39cee97f6644faef5bec24881b69c.tar.gz nextcloud-server-0dbb99a81bc39cee97f6644faef5bec24881b69c.zip |
Merge pull request #23161 from nextcloud/enh/noid/setup-checks2
Remove setup check for php mail
Diffstat (limited to 'core')
-rw-r--r-- | core/js/setupchecks.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 4773a201535..c8ca1afe511 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -417,18 +417,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_WARNING }) } - if (data.isPHPMailerUsed) { - messages.push({ - msg: t( - 'core', - 'Use of the the built in php mailer is no longer supported. <a target="_blank" rel="noreferrer noopener" href="{docLink}">Please update your email server settings ↗<a/>.', - { - docLink: data.mailSettingsDocumentation, - } - ), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING - }); - } if (!data.isMemoryLimitSufficient) { messages.push({ msg: t( |