remove isIncomingMailEnabled. always enable for now

also, custom domain === we will take over domain completely (setup
mx and all)
This commit is contained in:
Girish Ramakrishnan
2016-05-13 18:44:05 -07:00
parent 78ad49bd74
commit 39c4954371
4 changed files with 19 additions and 25 deletions

View File

@@ -136,7 +136,7 @@ function initialize(callback) {
certificates.getAdminCertificatePath(function (error, certFilePath, keyFilePath) {
if (error) return callback(error);
shell.sudo('seutp_infra', [ SETUP_INFRA_CMD, paths.DATA_DIR, config.fqdn(), config.adminFqdn(), certFilePath, keyFilePath, settings.isIncomingMailEnabled() ], callback);
shell.sudo('seutp_infra', [ SETUP_INFRA_CMD, paths.DATA_DIR, config.fqdn(), config.adminFqdn(), certFilePath, keyFilePath ], callback);
});
}