Skip to content

Commit

Permalink
Fixes #63
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Mar 21, 2018
1 parent 12f940a commit 3d5024b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mailer/mailCheck.js
Expand Up @@ -49,7 +49,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') ? {value: true} : false;
var POLLING_INTERVAL = 600000; //10 min
var DEFAULT_TICKET_TYPE = s.mailerCheckTicketType.value;

Expand Down

0 comments on commit 3d5024b

Please sign in to comment.