Fix hardcoded ip for mailcatcher smtp connection config
This commit is contained in:
parent
78d05f3101
commit
7d73f71248
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user