Fix hardcoded ip for mailcatcher smtp connection config

This commit is contained in:
Kuba Orlik 2024-06-11 20:33:13 +02:00
parent 78d05f3101
commit 7d73f71248

View File

@ -39,7 +39,7 @@ export async function withProdApp(
}; };
app.config.logger.level = <const>"none"; app.config.logger.level = <const>"none";
app.mailer = new SMTPMailer({ app.mailer = new SMTPMailer({
host: "127.0.0.1", host: MAILCATCHER_HOST,
port: MAILCATCHER_SMTP_PORT, port: MAILCATCHER_SMTP_PORT,
user: "any", user: "any",
password: "any", password: "any",