2020-03-11 21:17:52 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!defined('APP_VERSION'))
|
|
|
|
{
|
|
|
|
define('APP_VERSION', '0.0.0');
|
|
|
|
define('APP_INDEX_ROOT_FILE', __FILE__);
|
2021-03-25 21:00:14 +08:00
|
|
|
define('APP_INDEX_ROOT_PATH', strtr(__DIR__, DIRECTORY_SEPARATOR, '/') . '/');
|
2020-03-11 21:17:52 +08:00
|
|
|
}
|
|
|
|
|
2020-10-15 22:21:52 +08:00
|
|
|
if (file_exists(APP_INDEX_ROOT_PATH.'snappymail/v/'.APP_VERSION.'/include.php'))
|
2020-03-11 21:17:52 +08:00
|
|
|
{
|
2020-10-15 22:21:52 +08:00
|
|
|
include APP_INDEX_ROOT_PATH.'snappymail/v/'.APP_VERSION.'/include.php';
|
2020-03-11 21:17:52 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo '[105] Missing version directory';
|
|
|
|
exit(105);
|
|
|
|
}
|