2016-12-10 03:39:02 +08:00
|
|
|
<?php
|
2017-05-14 05:07:48 +08:00
|
|
|
error_reporting(E_ERROR);
|
|
|
|
//error_reporting(E_ALL);
|
2016-12-10 03:39:02 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
PLEASE USE THE FILE "vars.local.inc.php" TO OVERWRITE SETTINGS AND MAKE THEM PERSISTENT!
|
|
|
|
This file will be reset on upgrades.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// SQL database connection variables
|
2017-05-17 01:20:58 +08:00
|
|
|
$database_type = 'mysql';
|
|
|
|
$database_host = 'mysql';
|
2016-12-15 04:10:11 +08:00
|
|
|
$database_user = getenv('DBUSER');
|
|
|
|
$database_pass = getenv('DBPASS');
|
|
|
|
$database_name = getenv('DBNAME');
|
2016-12-21 19:16:05 +08:00
|
|
|
|
|
|
|
// Other variables
|
|
|
|
$mailcow_hostname = getenv('MAILCOW_HOSTNAME');
|
2016-12-10 03:39:02 +08:00
|
|
|
|
2017-06-26 00:09:42 +08:00
|
|
|
// Autodiscover settings
|
2017-07-24 18:35:04 +08:00
|
|
|
// ===
|
|
|
|
// Auto-detect HTTPS port =>
|
2017-07-11 02:52:51 +08:00
|
|
|
$https_port = strpos($_SERVER['HTTP_HOST'], ':');
|
|
|
|
if ($https_port === FALSE) {
|
|
|
|
$https_port = 443;
|
|
|
|
} else {
|
|
|
|
$https_port = substr($_SERVER['HTTP_HOST'], $https_port+1);
|
|
|
|
}
|
2017-07-24 18:35:04 +08:00
|
|
|
// Alternatively select port here =>
|
|
|
|
//$https_port = 1234;
|
|
|
|
// Other settings =>
|
2017-06-26 00:09:42 +08:00
|
|
|
$autodiscover_config = array(
|
|
|
|
// General autodiscover service type: "activesync" or "imap"
|
2017-10-02 21:58:55 +08:00
|
|
|
// emClient uses autodiscover, but does not support ActiveSync. mailcow excludes emClient from ActiveSync.
|
2017-06-26 00:09:42 +08:00
|
|
|
'autodiscoverType' => 'activesync',
|
2017-10-02 21:58:55 +08:00
|
|
|
// If autodiscoverType => activesync, also use ActiveSync (EAS) for Outlook desktop clients (>= Outlook 2013 on Windows)
|
|
|
|
// Outlook for Mac does not support ActiveSync
|
|
|
|
'useEASforOutlook' => 'yes',
|
2017-07-11 02:52:51 +08:00
|
|
|
// Please don't use STARTTLS-enabled service ports in the "port" variable.
|
2017-06-29 05:22:51 +08:00
|
|
|
// The autodiscover service will always point to SMTPS and IMAPS (TLS-wrapped services).
|
2017-07-11 02:52:51 +08:00
|
|
|
// The autoconfig service will additionally announce the STARTTLS-enabled ports, specified in the "tlsport" variable.
|
2017-06-26 00:09:42 +08:00
|
|
|
'imap' => array(
|
|
|
|
'server' => $mailcow_hostname,
|
2017-07-11 02:52:51 +08:00
|
|
|
'port' => array_pop(explode(':', getenv('IMAPS_PORT'))),
|
|
|
|
'tlsport' => array_pop(explode(':', getenv('IMAP_PORT'))),
|
|
|
|
),
|
|
|
|
'pop3' => array(
|
|
|
|
'server' => $mailcow_hostname,
|
|
|
|
'port' => array_pop(explode(':', getenv('POPS_PORT'))),
|
|
|
|
'tlsport' => array_pop(explode(':', getenv('POP_PORT'))),
|
2017-06-26 00:09:42 +08:00
|
|
|
),
|
|
|
|
'smtp' => array(
|
|
|
|
'server' => $mailcow_hostname,
|
2017-07-11 02:52:51 +08:00
|
|
|
'port' => array_pop(explode(':', getenv('SMTPS_PORT'))),
|
|
|
|
'tlsport' => array_pop(explode(':', getenv('SUBMISSION_PORT'))),
|
2017-06-26 00:09:42 +08:00
|
|
|
),
|
|
|
|
'activesync' => array(
|
2017-07-11 02:52:51 +08:00
|
|
|
'url' => 'https://'.$mailcow_hostname.($https_port == 443 ? '' : ':'.$https_port).'/Microsoft-Server-ActiveSync',
|
2017-06-29 05:22:51 +08:00
|
|
|
),
|
|
|
|
'caldav' => array(
|
2017-07-11 02:52:51 +08:00
|
|
|
'server' => $mailcow_hostname,
|
|
|
|
'port' => $https_port,
|
2017-06-29 05:22:51 +08:00
|
|
|
),
|
|
|
|
'carddav' => array(
|
2017-07-11 02:52:51 +08:00
|
|
|
'server' => $mailcow_hostname,
|
|
|
|
'port' => $https_port,
|
|
|
|
),
|
2017-06-26 00:09:42 +08:00
|
|
|
);
|
2017-07-11 02:52:51 +08:00
|
|
|
unset($https_port);
|
2017-06-26 00:09:42 +08:00
|
|
|
|
2017-05-17 00:11:58 +08:00
|
|
|
// Change default language, "de", "en", "es", "nl", "pt", "ru"
|
2017-05-17 01:20:58 +08:00
|
|
|
$DEFAULT_LANG = 'en';
|
2016-12-10 03:39:02 +08:00
|
|
|
|
2017-05-17 00:11:58 +08:00
|
|
|
// Available languages
|
2017-10-23 07:07:33 +08:00
|
|
|
$AVAILABLE_LANGUAGES = array('de', 'en', 'es', 'fr', 'nl', 'pl', 'pt', 'ru', 'it');
|
2017-05-17 00:11:58 +08:00
|
|
|
|
2016-12-10 03:39:02 +08:00
|
|
|
// Change theme (default: lumen)
|
|
|
|
// Needs to be one of those: cerulean, cosmo, cyborg, darkly, flatly, journal, lumen, paper, readable, sandstone,
|
|
|
|
// simplex, slate, spacelab, superhero, united, yeti
|
|
|
|
// See https://bootswatch.com/
|
2017-05-30 03:51:06 +08:00
|
|
|
// WARNING: Only lumen is loaded locally. Enabling any other theme, will download external sources.
|
2017-05-17 01:20:58 +08:00
|
|
|
$DEFAULT_THEME = 'lumen';
|
2017-01-26 02:07:30 +08:00
|
|
|
|
2017-02-22 05:27:11 +08:00
|
|
|
// Password complexity as regular expression
|
|
|
|
$PASSWD_REGEP = '.{4,}';
|
2017-03-21 19:22:13 +08:00
|
|
|
|
2017-09-17 04:59:42 +08:00
|
|
|
// Show DKIM private keys - false by default
|
|
|
|
$SHOW_DKIM_PRIV_KEYS = false;
|
|
|
|
|
2017-03-21 19:22:13 +08:00
|
|
|
// mailcow Apps - buttons on login screen
|
|
|
|
$MAILCOW_APPS = array(
|
|
|
|
array(
|
|
|
|
'name' => 'SOGo',
|
2017-06-11 08:05:10 +08:00
|
|
|
'link' => '/SOGo/',
|
2017-06-12 15:38:36 +08:00
|
|
|
'description' => 'SOGo is a web-based client for email, address book and calendar.'
|
2017-03-21 19:22:13 +08:00
|
|
|
),
|
|
|
|
// array(
|
|
|
|
// 'name' => 'Roundcube',
|
2017-06-11 08:05:10 +08:00
|
|
|
// 'link' => '/rc/',
|
2017-06-12 15:38:36 +08:00
|
|
|
// 'description' => 'Roundcube is a web-based email client.',
|
2017-03-21 19:22:13 +08:00
|
|
|
// ),
|
|
|
|
);
|
|
|
|
|
2017-03-22 17:46:24 +08:00
|
|
|
// Rows until pagination begins
|
|
|
|
$PAGINATION_SIZE = 10;
|
|
|
|
|
2017-11-04 03:37:24 +08:00
|
|
|
// Default number of rows/lines to display (log table)
|
|
|
|
$LOG_LINES = 100;
|
|
|
|
|
2017-05-30 03:51:06 +08:00
|
|
|
// Rows until pagination begins (log table)
|
|
|
|
$LOG_PAGINATION_SIZE = 30;
|
|
|
|
|
2017-05-07 19:38:31 +08:00
|
|
|
// Session lifetime in seconds
|
|
|
|
$SESSION_LIFETIME = 3600;
|
2017-05-27 05:02:04 +08:00
|
|
|
|
|
|
|
// Label for OTP devices
|
2017-06-11 08:05:10 +08:00
|
|
|
$OTP_LABEL = "mailcow UI";
|
2017-07-27 05:10:18 +08:00
|
|
|
|
|
|
|
// Default "to" address in relay test tool
|
|
|
|
$RELAY_TO = "null@hosted.mailcow.de";
|
2017-11-19 22:13:43 +08:00
|
|
|
|
|
|
|
// Internal constants, can be ignored
|
|
|
|
define("F2B", 1);
|