From 9ed87ca53a89997b235fa20f10ac038e6eee3a70 Mon Sep 17 00:00:00 2001 From: ClaraCrazy Date: Wed, 1 Nov 2023 13:21:37 +0100 Subject: [PATCH] Add missing customization --- infrastructure/web/routes/inbox.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/infrastructure/web/routes/inbox.js b/infrastructure/web/routes/inbox.js index 3fa3137..3699150 100644 --- a/infrastructure/web/routes/inbox.js +++ b/infrastructure/web/routes/inbox.js @@ -38,7 +38,9 @@ router.get( res.render('mail', { title: req.params.address, address: req.params.address, - mail + mail, + madeby: config.branding[1], + madebysite: config.branding[2] }) } else { next({message: 'email not found', status: 404})