diff --git a/src/views/app.html b/src/views/app.html
index 1a56e0810..35ec41922 100644
--- a/src/views/app.html
+++ b/src/views/app.html
@@ -22,9 +22,8 @@
-
This app is set up to allow all users with a mailbox on this Cloudron. Login with the email and Cloudron password to access the mailbox.
-
This app is set up to authenticate with the Cloudron User Directory. Cloudron users can login and use {{ appPostInstallConfirm.app.manifest.title }}.
+
This app is set up to authenticate with the Cloudron User Directory. Cloudron users can login and use {{ appPostInstallConfirm.app.manifest.title }}.
@@ -285,9 +284,8 @@
First Time Setup
-
This app is set up to allow all users with a mailbox on this Cloudron. Login with the email and Cloudron password to access the mailbox.
-
This app is set up to authenticate with the Cloudron User Directory. Cloudron users can login and use {{ appPostInstallConfirm.app.manifest.title }}.
+
This app is set up to authenticate with the Cloudron User Directory. Cloudron users can login and use {{ appPostInstallConfirm.app.manifest.title }}.
diff --git a/src/views/app.js b/src/views/app.js
index b0bf1d3dd..eb6b989c4 100644
--- a/src/views/app.js
+++ b/src/views/app.js
@@ -143,12 +143,10 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
$scope.postInstallMessage = {
confirmed: false,
openApp: false,
- customAuth: false,
show: function (openApp) {
$scope.postInstallMessage.confirmed = false;
$scope.postInstallMessage.openApp = !!openApp;
- $scope.postInstallMessage.customAuth = !($scope.app.manifest.addons['ldap'] || $scope.app.manifest.addons['oauth']);
if (!$scope.app.manifest.postInstallMessage) return;
$('#postInstallModal').modal('show');
@@ -1415,12 +1413,10 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
$scope.postInstallConfirm = {
message: '',
confirmed: false,
- customAuth: false,
show: function () {
$scope.postInstallConfirm.message = $scope.app.manifest.postInstallMessage;
$scope.postInstallConfirm.confirmed = false;
- $scope.postInstallConfirm.customAuth = !($scope.app.manifest.addons['ldap'] || $scope.app.manifest.addons['oauth']);
$('#postInstallConfirmModal').modal('show');