Skip to content

Commit

Permalink
updated email config for office365 conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpen committed Oct 12, 2022
1 parent 89db5a2 commit 16e2730
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/build-server/getBuildServerConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function getDeployConfig( fs ) {
devDeployServer: buildLocalJSON.devDeployServer || 'bayes.colorado.edu',
devUsername: buildLocalJSON.devUsername,
emailPassword: buildLocalJSON.emailPassword,
emailServer: buildLocalJSON.emailServer || 'smtp.colorado.edu',
emailServer: buildLocalJSON.emailServer || 'smtp.office365.com',
emailTo: buildLocalJSON.emailTo,
emailUsername: buildLocalJSON.emailUsername,
htmlSimsDirectory: buildLocalJSON.htmlSimsDirectory,
Expand Down
2 changes: 1 addition & 1 deletion js/build-server/sendEmail.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if ( constants.BUILD_SERVER_CONFIG.emailUsername && constants.BUILD_SERVER_CONFI
user: constants.BUILD_SERVER_CONFIG.emailUsername,
password: constants.BUILD_SERVER_CONFIG.emailPassword,
host: constants.BUILD_SERVER_CONFIG.emailServer,
ssl: false
tls: true
} );
}
else {
Expand Down

0 comments on commit 16e2730

Please sign in to comment.