2017-03-02 18:23:23 +08:00
|
|
|
<?php
|
2017-09-17 20:39:10 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/vars.inc.php';
|
2017-09-16 19:33:27 +08:00
|
|
|
$default_autodiscover_config = $autodiscover_config;
|
2017-05-17 00:11:58 +08:00
|
|
|
if (file_exists($_SERVER['DOCUMENT_ROOT'] . '/inc/vars.local.inc.php')) {
|
|
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/inc/vars.local.inc.php';
|
2017-03-02 18:23:23 +08:00
|
|
|
}
|
2017-09-16 19:33:27 +08:00
|
|
|
$autodiscover_config = array_merge($default_autodiscover_config, $autodiscover_config);
|
2017-03-02 18:23:23 +08:00
|
|
|
|
2017-06-07 03:58:48 +08:00
|
|
|
header_remove("X-Powered-By");
|
|
|
|
|
2017-03-02 18:23:23 +08:00
|
|
|
// Yubi OTP API
|
2017-05-08 21:41:05 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/lib/Yubico.php';
|
2017-03-02 18:23:23 +08:00
|
|
|
|
2017-05-07 19:38:31 +08:00
|
|
|
// Autoload composer
|
2017-05-08 21:41:05 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/lib/vendor/autoload.php';
|
2017-05-07 19:38:31 +08:00
|
|
|
|
2017-11-04 03:37:24 +08:00
|
|
|
// Load Sieve
|
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/lib/sieve/SieveParser.php';
|
|
|
|
|
2019-01-30 19:10:26 +08:00
|
|
|
// Minify JS
|
|
|
|
use MatthiasMullie\Minify;
|
|
|
|
$js_minifier = new Minify\JS();
|
|
|
|
$js_dir = array_diff(scandir('/web/js/build'), array('..', '.'));
|
|
|
|
foreach ($js_dir as $js_file) {
|
|
|
|
$js_minifier->add('/web/js/build/' . $js_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Minify CSS
|
|
|
|
$css_minifier = new Minify\CSS();
|
|
|
|
$css_dir = array_diff(scandir('/web/css/build'), array('..', '.'));
|
|
|
|
foreach ($css_dir as $css_file) {
|
|
|
|
$css_minifier->add('/web/css/build/' . $css_file);
|
|
|
|
}
|
|
|
|
|
2017-05-07 19:38:31 +08:00
|
|
|
// U2F API + T/HOTP API
|
|
|
|
$u2f = new u2flib_server\U2F('https://' . $_SERVER['HTTP_HOST']);
|
2017-05-27 05:02:04 +08:00
|
|
|
$tfa = new RobThree\Auth\TwoFactorAuth($OTP_LABEL);
|
2017-03-02 18:23:23 +08:00
|
|
|
|
2017-05-05 16:35:27 +08:00
|
|
|
// Redis
|
|
|
|
$redis = new Redis();
|
|
|
|
$redis->connect('redis-mailcow', 6379);
|
|
|
|
|
2017-03-02 18:23:23 +08:00
|
|
|
// PDO
|
2017-04-21 16:20:31 +08:00
|
|
|
// Calculate offset
|
2018-11-12 17:03:50 +08:00
|
|
|
// $now = new DateTime();
|
|
|
|
// $mins = $now->getOffset() / 60;
|
|
|
|
// $sgn = ($mins < 0 ? -1 : 1);
|
|
|
|
// $mins = abs($mins);
|
|
|
|
// $hrs = floor($mins / 60);
|
|
|
|
// $mins -= $hrs * 60;
|
|
|
|
// $offset = sprintf('%+d:%02d', $hrs*$sgn, $mins);
|
2017-04-21 16:20:31 +08:00
|
|
|
|
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
|
|
|
$dsn = $database_type . ":unix_socket=" . $database_sock . ";dbname=" . $database_name;
|
2017-03-02 18:23:23 +08:00
|
|
|
$opt = [
|
2017-05-17 00:11:58 +08:00
|
|
|
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
|
|
|
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
|
|
|
|
PDO::ATTR_EMULATE_PREPARES => false,
|
2018-11-12 17:03:50 +08:00
|
|
|
//PDO::MYSQL_ATTR_INIT_COMMAND => "SET time_zone = '" . $offset . "', group_concat_max_len = 3423543543;",
|
2017-03-02 18:23:23 +08:00
|
|
|
];
|
|
|
|
try {
|
2017-05-17 00:11:58 +08:00
|
|
|
$pdo = new PDO($dsn, $database_user, $database_pass, $opt);
|
2017-03-02 18:23:23 +08:00
|
|
|
}
|
|
|
|
catch (PDOException $e) {
|
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
|
|
|
// Stop when SQL connection fails
|
2017-03-02 18:23:23 +08:00
|
|
|
?>
|
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
|
|
|
<center style='font-family:sans-serif;'>Connection to database failed.<br /><br />The following error was reported:<br/> <?=$e->getMessage();?></center>
|
2017-03-02 18:23:23 +08:00
|
|
|
<?php
|
|
|
|
exit;
|
|
|
|
}
|
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
|
|
|
// Stop when dockerapi is not available
|
|
|
|
if (fsockopen("tcp://dockerapi", 443, $errno, $errstr) === false) {
|
|
|
|
?>
|
|
|
|
<center style='font-family:sans-serif;'>Connection to dockerapi container failed.<br /><br />The following error was reported:<br/><?=$errno;?> - <?=$errstr;?></center>
|
|
|
|
<?php
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2018-11-12 17:03:50 +08:00
|
|
|
function exception_handler($e) {
|
2018-08-14 05:20:40 +08:00
|
|
|
if ($e instanceof PDOException) {
|
|
|
|
$_SESSION['return'][] = array(
|
|
|
|
'type' => 'danger',
|
|
|
|
'log' => array(__FUNCTION__),
|
|
|
|
'msg' => array('mysql_error', $e)
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$_SESSION['return'][] = array(
|
|
|
|
'type' => 'danger',
|
|
|
|
'log' => array(__FUNCTION__),
|
2018-11-12 17:03:50 +08:00
|
|
|
'msg' => 'An unknown error occured: ' . print_r($e, true)
|
2018-08-14 05:20:40 +08:00
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2018-11-12 17:03:50 +08:00
|
|
|
set_exception_handler('exception_handler');
|
2017-03-02 18:23:23 +08:00
|
|
|
|
2018-08-06 04:31:53 +08:00
|
|
|
// TODO: Move function
|
|
|
|
function get_remote_ip($anonymize = null) {
|
|
|
|
global $ANONYMIZE_IPS;
|
|
|
|
if ($anonymize === null) {
|
|
|
|
$anonymize = $ANONYMIZE_IPS;
|
|
|
|
}
|
|
|
|
elseif ($anonymize !== true && $anonymize !== false) {
|
|
|
|
$anonymize = true;
|
|
|
|
}
|
2018-08-18 04:32:42 +08:00
|
|
|
$remote = $_SERVER['REMOTE_ADDR'];
|
2018-08-06 04:31:53 +08:00
|
|
|
if (filter_var($remote, FILTER_VALIDATE_IP) === false) {
|
|
|
|
return '0.0.0.0';
|
|
|
|
}
|
|
|
|
if ($anonymize) {
|
|
|
|
if (strlen(inet_pton($remote)) == 4) {
|
|
|
|
return inet_ntop(inet_pton($remote) & inet_pton("255.255.255.0"));
|
|
|
|
}
|
|
|
|
elseif (strlen(inet_pton($remote)) == 16) {
|
|
|
|
return inet_ntop(inet_pton($remote) & inet_pton('ffff:ffff:ffff:ffff:0000:0000:0000:0000'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return $remote;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-09 20:17:15 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/sessions.inc.php';
|
|
|
|
|
2018-11-12 17:03:50 +08:00
|
|
|
// IMAP lib
|
|
|
|
// use Ddeboer\Imap\Server;
|
|
|
|
// $imap_server = new Server('dovecot', 143, '/imap/tls/novalidate-cert');
|
|
|
|
|
2017-05-17 00:11:58 +08:00
|
|
|
// Set language
|
2018-01-02 19:30:45 +08:00
|
|
|
if (!isset($_SESSION['mailcow_locale']) && !isset($_COOKIE['mailcow_locale'])) {
|
2017-12-09 20:17:15 +08:00
|
|
|
if ($DETECT_LANGUAGE && isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
|
2018-10-19 16:20:09 +08:00
|
|
|
$header_lang = strtolower(substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2));
|
|
|
|
if (in_array($header_lang, $AVAILABLE_LANGUAGES)) {
|
|
|
|
$_SESSION['mailcow_locale'] = $header_lang;
|
2017-12-09 20:17:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$_SESSION['mailcow_locale'] = strtolower(trim($DEFAULT_LANG));
|
|
|
|
}
|
2017-05-23 15:36:59 +08:00
|
|
|
}
|
2018-01-02 19:30:45 +08:00
|
|
|
if (isset($_COOKIE['mailcow_locale'])) {
|
2018-10-19 16:20:09 +08:00
|
|
|
(preg_match('/^[a-z]{2}$/', $_COOKIE['mailcow_locale'])) ? $_SESSION['mailcow_locale'] = $_COOKIE['mailcow_locale'] : setcookie("mailcow_locale", "", time() - 300);
|
2018-01-02 19:30:45 +08:00
|
|
|
}
|
2017-05-17 00:11:58 +08:00
|
|
|
if (isset($_GET['lang']) && in_array($_GET['lang'], $AVAILABLE_LANGUAGES)) {
|
|
|
|
$_SESSION['mailcow_locale'] = $_GET['lang'];
|
2018-01-02 19:30:45 +08:00
|
|
|
setcookie("mailcow_locale", $_GET['lang'], time()+30758400); // one year
|
2017-05-17 00:11:58 +08:00
|
|
|
}
|
|
|
|
|
2017-05-08 21:41:05 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/lang/lang.en.php';
|
|
|
|
include $_SERVER['DOCUMENT_ROOT'] . '/lang/lang.'.$_SESSION['mailcow_locale'].'.php';
|
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.inc.php';
|
2018-09-10 03:17:59 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.acl.inc.php';
|
2017-05-23 15:36:59 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.mailbox.inc.php';
|
2017-10-21 16:07:06 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.customize.inc.php';
|
2018-01-24 02:59:06 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.address_rewriting.inc.php';
|
2017-07-16 17:03:28 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.domain_admin.inc.php';
|
2018-10-11 17:59:23 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.admin.inc.php';
|
2018-02-09 03:13:36 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.quarantine.inc.php';
|
2017-05-23 15:36:59 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.policy.inc.php';
|
2017-05-27 05:02:04 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.dkim.inc.php';
|
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.fwdhost.inc.php';
|
2018-10-24 03:14:57 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.mailq.inc.php';
|
2018-08-21 23:41:04 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.ratelimit.inc.php';
|
2018-12-20 18:23:35 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.transports.inc.php';
|
2018-06-24 05:50:22 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.rsettings.inc.php';
|
2018-10-04 20:38:12 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.tls_policy_maps.inc.php';
|
2017-06-29 16:29:56 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.fail2ban.inc.php';
|
2017-11-04 03:37:24 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.docker.inc.php';
|
2017-05-08 21:41:05 +08:00
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/init_db.inc.php';
|
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/triggers.inc.php';
|
2017-04-21 16:20:31 +08:00
|
|
|
init_db_schema();
|
2017-08-19 04:18:14 +08:00
|
|
|
if (isset($_SESSION['mailcow_cc_role'])) {
|
2018-11-12 17:03:50 +08:00
|
|
|
// if ($_SESSION['mailcow_cc_role'] == 'user') {
|
|
|
|
// list($master_user, $master_passwd) = explode(':', file_get_contents('/etc/sogo/sieve.creds'));
|
|
|
|
// $imap_connection = $imap_server->authenticate($_SESSION['mailcow_cc_username'] . '*' . trim($master_user), trim($master_passwd));
|
|
|
|
// $master_user = $master_passwd = null;
|
|
|
|
// }
|
2018-09-10 03:17:59 +08:00
|
|
|
acl('to_session');
|
2017-10-02 02:34:37 +08:00
|
|
|
}
|
2017-12-09 20:17:15 +08:00
|
|
|
$UI_TEXTS = customize('get', 'ui_texts');
|
[Docker API] Use TLS encryption for communication with "on-the-fly" created key paris (non-exposed)
[Docker API] Create pipe to pass Rspamd UI worker password
[Dovecot] Pull Spamassassin ruleset to be read by Rspamd (MANY THANKS to Peer Heinlein!)
[Dovecot] Garbage collector for deleted maildirs (set keep time via MAILDIR_GC_TIME which defaults to 1440 minutes)
[Web] Flush memcached after mailbox item changes, fixes #1808
[Web] Fix duplicate IDs, fixes #1792
[Compose] Use SQL sockets
[PHP-FPM] Update APCu and Redis libs
[Dovecot] Encrypt maildir with global key pair in crypt-vol-1 (BACKUP!), also fixes #1791
[Web] Fix deletion of spam aliases
[Helper] Add "crypt" to backup script
[Helper] Override file for external SQL socket (not supported!)
[Compose] New images for Rspamd, PHP-FPM, SOGo, Dovecot, Docker API, Watchdog, ACME, Postfix
2018-09-30 04:01:23 +08:00
|
|
|
|