@@ -14,7 +14,7 @@
Cloudron will setup Email related DNS records automatically for {{selectedDomain.domain}}. Status of DNS Records below
may show an error while DNS is propagating (~5 minutes).
- If this domain is already configured to handle email with some other provider, it will overwrite those records.
+ If this domain is already configured to handle email with some other provider, it will overwrite those DNS records.
Any installed webmail clients will be automatically re-configured to reflect this change.
@@ -32,13 +32,13 @@
-
Cloudron Email Server
+
Disable Email Server for {{selectedDomain.domain}}?
-
This will disable the Cloudron Email Server for {{selectedDomain.domain}}.
-
Any installed webmail clients will be automatically re-configured to reflect this change.
+
Mailboxes and lists associated with this domain will not be deleted.
+
-
+
Mailboxes
-
-
+
@@ -341,15 +342,16 @@
-
+
Mailing Lists
-
+
New Mailing list
-
+
A Mailing list forwards all emails to it's members.
@@ -384,11 +386,11 @@
-
+
Catch-all
-
+
Emails sent to non existing addresses will be forwarded to the following mailboxes:
@@ -398,7 +400,10 @@
- Save
+
+ Save
+
diff --git a/src/views/email.js b/src/views/email.js
index 04fe75140..dcd5f50eb 100644
--- a/src/views/email.js
+++ b/src/views/email.js
@@ -57,7 +57,7 @@ angular.module('Application').controller('EmailController', ['$scope', '$locatio
Client.setCatchallAddresses($scope.selectedDomain.domain, addresses, function (error) {
if (error) console.error('Unable to add catchall address.', error);
- $scope.catchall.busy = false;
+ $timeout(function () { $scope.catchall.busy = false; }, 2000); // otherwise, it's too fast
});
},