64 lines
2.1 KiB
JavaScript
64 lines
2.1 KiB
JavaScript
const config = {
|
|
email: { // Email configuration
|
|
domains: process.env.EMAIL_DOMAINS || ['example.com', 'example.net'], // List object of domains
|
|
purgeTime: process.env.EMAIL_PURGE_TIME || {
|
|
time: 48, // Time value for when to purge
|
|
unit: 'hours', // minutes, hours, days
|
|
convert: true, // Convert to highest sensible unit (and round)
|
|
},
|
|
examples: process.env.EMAIL_EXAMPLES || { // Examples to use to demonstrate the service
|
|
account: "example@48hr.email", // example email to keep clean, besides the UIDs specified below
|
|
uids: [1, 2, 3] // example uids to keep
|
|
},
|
|
},
|
|
imap: { // IMAP configuration
|
|
user: process.env.IMAP_USER, // imap user
|
|
password: process.env.IMAP_PASSWORD, // imap password
|
|
host: process.env.IMAP_SERVER, // imap server
|
|
port: process.env.IMAP_PORT || 993, // imap port
|
|
tls: process.env.IMAP_TLS || true, // use secure connection?
|
|
authTimeout: process.env.IMAP_AUTHTIMEOUT || 3000, // timeout for auth
|
|
refreshIntervalSeconds: process.env.IMAP_REFRESH_INTERVAL_SECONDS || 60 // refresh interval
|
|
},
|
|
http: { // HTTP configuration
|
|
port: normalizePort(process.env.HTTP_PORT || 3000), // http port to listen on
|
|
branding: process.env.HTTP_BRANDING || ["48hr.email", "CrazyCo", "https://crazyco.xyz"], // branding [service_title, company_name, company_url]
|
|
displaySort: process.env.HTTP_DISPLAY_SORT || 0, // Sorting logic used for display:
|
|
// 0 does not modify,
|
|
// 1 sorts alphabetically,
|
|
// 2 sorts alphabetically and only shuffles the first item,
|
|
// 3 shuffles all
|
|
hideOther: process.env.HTTP_HIDE_OTHER || false, // Hide other emails in the list and only show first (true) or show all (false)
|
|
},
|
|
}
|
|
|
|
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;
|