Fix typos

This commit is contained in:
Girish Ramakrishnan
2017-06-29 10:11:55 -05:00
parent fd5a05db6c
commit c07df68558
4 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -260,7 +260,7 @@ function createMailConfig(callback) {
settings.getMailRelay(function (error, relay) {
if (error) return callback(error);
const enabled = relay.provider === 'cloudron-smtp' ? true : false,
const enabled = relay.provider !== 'cloudron-smtp' ? true : false,
host = relay.host || '',
port = relay.port || 25,
tls = !!relay.tls, // Whether to connect with TLS (not STARTTLS)