use support instead of admin

This commit is contained in:
Girish Ramakrishnan
2016-07-27 11:48:03 -07:00
parent 03c97d2027
commit e0d4c1adc1
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ function getApi(app, callback) {
// we simply update the account with the latest email we have each time when getting letsencrypt certs
// https://github.com/ietf-wg-acme/acme/issues/30
user.getOwner(function (error, owner) {
options.email = error ? 'admin@cloudron.io' : owner.email; // can error if not activated yet
options.email = error ? 'support@cloudron.io' : owner.email; // can error if not activated yet
callback(null, api, options);
});