Skip to content

Commit

Permalink
fix(mailcheck): TLS not being set correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Mar 21, 2019
1 parent d119211 commit 40627d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mailer/mailCheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ mailCheck.init = function (settings) {
var MAILERCHECK_USER = s.mailerCheckUsername.value
var MAILERCHECK_PASS = s.mailerCheckPassword.value
var MAILERCHECK_PORT = s.mailerCheckPort.value
var MAILERCHECK_TLS = s.mailerCheckPort.value === '993' ? { value: true } : false
var MAILERCHECK_TLS = s.mailerCheckPort.value === '993'
var POLLING_INTERVAL = s.mailerCheckPolling.value

if (!MAILERCHECK_ENABLED) return true
Expand Down

0 comments on commit 40627d0

Please sign in to comment.