From 9d470fa4a93a3714dc2501920e42ea87f939f8b9 Mon Sep 17 00:00:00 2001 From: Siddharth VP Date: Mon, 17 Jul 2023 02:38:08 +0530 Subject: [PATCH] bot-monitor: fix import from botbase --- botbase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botbase.ts b/botbase.ts index a2fd4fa..8f35b40 100644 --- a/botbase.ts +++ b/botbase.ts @@ -6,7 +6,7 @@ import * as child_process from 'child_process'; import * as nodemailer from 'nodemailer'; export {fs, path, child_process}; -const mailTransporter = nodemailer.createTransport({ +export const mailTransporter = nodemailer.createTransport({ host: 'mail.tools.wmflabs.org', port: 465, });