From b15c8893e58c01aec1e5eeda9e0e41a30e35e1c6 Mon Sep 17 00:00:00 2001 From: Markus Tacker Date: Mon, 6 Sep 2021 00:43:25 +0200 Subject: [PATCH] fix: show which server is used for emails sending --- src/mailer/smtp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mailer/smtp.ts b/src/mailer/smtp.ts index 0eae2c7b5..8cacf25ed 100644 --- a/src/mailer/smtp.ts +++ b/src/mailer/smtp.ts @@ -41,7 +41,7 @@ export const smtpMailer = (omnibus: EventEmitter): void => { console.error(`[email] Sending of emails DISABLED!`) return } - console.debug(`[email] Sending of emails ENABLED!`) + console.debug(`[email] Sending of emails ENABLED via ${host}!`) omnibus.on( 'user_registered', async (user: UserAccount, token: VerificationToken) => {