Merge pull request #119 from clems4ever/remove-smtp-logs

Remove useless logs displaying smtp credentials
pull/121/head
Clément Michaud 2017-10-07 22:10:11 +02:00 committed by GitHub
commit b74cf5fd77
1 changed files with 0 additions and 2 deletions

View File

@ -20,12 +20,10 @@ export class SmtpNotifier extends AbstractEmailNotifier {
pass: options.password
}
};
console.log(smtpOptions);
const transporter = nodemailer.createTransport(smtpOptions);
this.transporter = BluebirdPromise.promisifyAll(transporter);
// verify connection configuration
console.log("Checking SMTP server connection.");
transporter.verify(function (error, success) {
if (error) {
throw new Error("Unable to connect to SMTP server. \