Files
cloudron-box/src/constants.js

55 lines
1.7 KiB
JavaScript
Raw Normal View History

'use strict';
let fs = require('fs'),
path = require('path');
2019-07-25 15:43:51 -07:00
const CLOUDRON = process.env.BOX_ENV === 'cloudron',
TEST = process.env.BOX_ENV === 'test';
exports = module.exports = {
2016-05-04 15:35:59 -07:00
SMTP_LOCATION: 'smtp',
IMAP_LOCATION: 'imap',
// These are combined into one array because users and groups become mailboxes
RESERVED_NAMES: [
// Reserved usernames
// https://github.com/gogits/gogs/blob/52c8f691630548fe091d30bcfe8164545a05d3d5/models/repo.go#L393
// apps like wordpress, gogs don't like these
// postmaster is used in dovecot and haraka
'admin', 'no-reply', 'postmaster', 'mailer-daemon',
// Reserved groups
'admins', 'users' // ldap code uses 'users' pseudo group
],
ADMIN_LOCATION: 'my',
2019-07-25 15:43:51 -07:00
PORT: CLOUDRON ? 3000 : 5454,
2019-07-25 15:27:28 -07:00
INTERNAL_SMTP_PORT: 2525, // this value comes from the mail container
SYSADMIN_PORT: 3001, // unused
LDAP_PORT: 3002,
DOCKER_PROXY_PORT: 3003,
2019-07-25 15:21:15 -07:00
NGINX_DEFAULT_CONFIG_FILE_NAME: 'default.conf',
DEFAULT_TOKEN_EXPIRATION: 365 * 24 * 60 * 60 * 1000, // 1 year
2016-08-01 10:14:45 +02:00
2016-08-31 21:00:05 -07:00
DEFAULT_MEMORY_LIMIT: (256 * 1024 * 1024), // see also client.js
2016-12-14 14:54:17 +01:00
DEMO_USERNAME: 'cloudron',
2019-02-15 10:55:15 -08:00
AUTOUPDATE_PATTERN_NEVER: 'never',
SECRET_PLACEHOLDER: String.fromCharCode(0x25CF).repeat(8),
2019-07-25 15:43:51 -07:00
CLOUDRON: CLOUDRON,
TEST: TEST,
2020-02-04 13:07:26 -08:00
SUPPORT_EMAIL: 'support@cloudron.io',
2020-03-06 19:13:37 -08:00
FOOTER: '&copy; 2020 &nbsp; [Cloudron](https://cloudron.io) &nbsp; &nbsp; &nbsp; [Forum <i class="fa fa-comments"></i>](https://forum.cloudron.io)',
2020-04-08 14:02:46 -07:00
VERSION: process.env.BOX_ENV === 'cloudron' ? fs.readFileSync(path.join(__dirname, '../VERSION'), 'utf8').trim() : '5.1.1-test'
};