2023-11-01 11:59:20 +01:00
|
|
|
// Note: Also update app.json and README.md!
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
email: {
|
|
|
|
domains: process.env.DOMAINS,
|
|
|
|
deleteMailsOlderThanDays: process.env.DELETE_MAILS_OLDER_THAN_DAYS
|
|
|
|
},
|
|
|
|
imap: {
|
|
|
|
user: process.env.IMAP_USER,
|
|
|
|
password: process.env.IMAP_PASSWORD,
|
|
|
|
host: process.env.IMAP_SERVER,
|
|
|
|
port: 993,
|
|
|
|
tls: true,
|
|
|
|
authTimeout: 3000,
|
|
|
|
refreshIntervalSeconds: process.env.IMAP_REFRESH_INTERVAL_SECONDS
|
|
|
|
},
|
2023-11-01 12:35:34 +01:00
|
|
|
http: {port: normalizePort(process.env.PORT || '3000')},
|
|
|
|
branding: process.env.BRANDING || ["PROJECT_NAME", "YOUR_NAME", "YOUR_WEBSITE"]
|
2023-11-01 11:59:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.imap.user || !config.imap.password || !config.imap.host) {
|
|
|
|
throw new Error('IMAP is not configured. Use IMAP_* ENV vars.')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.email.domains) {
|
|
|
|
throw new Error('DOMAINS is not configured. Use ENV vars.')
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normalize a port into a number, string, or false.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function normalizePort(val) {
|
|
|
|
const port = parseInt(val, 10)
|
|
|
|
|
|
|
|
if (isNaN(port)) {
|
|
|
|
// Named pipe
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
|
|
|
if (port >= 0) {
|
|
|
|
// Port number
|
|
|
|
return port
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = config
|