From a04545471ed35a13991b36d6108fcf977e85666a Mon Sep 17 00:00:00 2001 From: Joe Biellik Date: Sat, 5 Aug 2017 17:29:21 +0100 Subject: [PATCH] Disable secure connections --- mail-server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail-server.js b/mail-server.js index 702aadf..0ff0911 100644 --- a/mail-server.js +++ b/mail-server.js @@ -9,7 +9,7 @@ const server = new SMTPServer({ name: config.mail.hostname, banner: config.mail.banner, secure: false, - disabledCommands: ['AUTH'], + disabledCommands: ['AUTH', 'STARTTLS'], onRcptTo: (address, session, callback) => { // Only accept whitelisted recipient address domains for (const domain of config.mail.domains) {