Add SMTPS port for apps that require TLS connections for mail relay

This commit is contained in:
Girish Ramakrishnan
2017-10-19 12:00:22 -07:00
parent 0b1d940128
commit 433d797cb7
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -363,6 +363,7 @@ function setupSendMail(app, options, callback) {
var env = [
{ name: 'MAIL_SMTP_SERVER', value: 'mail' },
{ name: 'MAIL_SMTP_PORT', value: '2525' },
{ name: 'MAIL_SMTPS_PORT', value: '4650' },
{ name: 'MAIL_SMTP_USERNAME', value: mailbox.name },
{ name: 'MAIL_SMTP_PASSWORD', value: password },
{ name: 'MAIL_FROM', value: mailbox.name + '@' + config.fqdn() },