From 4becfb7d8154fc19c6a022e1b93f4824a0c71a47 Mon Sep 17 00:00:00 2001 From: Clara K Date: Wed, 1 Nov 2023 12:35:34 +0100 Subject: [PATCH] Configurable branding pt. 2 --- application/config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/config.js b/application/config.js index c061895..a779b93 100644 --- a/application/config.js +++ b/application/config.js @@ -14,7 +14,8 @@ const config = { authTimeout: 3000, refreshIntervalSeconds: process.env.IMAP_REFRESH_INTERVAL_SECONDS }, - http: {port: normalizePort(process.env.PORT || '3000')} + http: {port: normalizePort(process.env.PORT || '3000')}, + branding: process.env.BRANDING || ["PROJECT_NAME", "YOUR_NAME", "YOUR_WEBSITE"] } if (!config.imap.user || !config.imap.password || !config.imap.host) {