mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
8967bc3817
Remove long hash names Add --pro and --sign parameters
19 lines
483 B
PHP
19 lines
483 B
PHP
<?php
|
|
|
|
if (!defined('APP_VERSION'))
|
|
{
|
|
define('APP_VERSION', '0.0.0');
|
|
define('APP_VERSION_TYPE', 'source');
|
|
define('APP_INDEX_ROOT_FILE', __FILE__);
|
|
define('APP_INDEX_ROOT_PATH', str_replace('\\', '/', rtrim(dirname(__FILE__), '\\/').'/'));
|
|
}
|
|
|
|
if (file_exists(APP_INDEX_ROOT_PATH.'rainloop/v/'.APP_VERSION.'/include.php'))
|
|
{
|
|
include APP_INDEX_ROOT_PATH.'rainloop/v/'.APP_VERSION.'/include.php';
|
|
}
|
|
else
|
|
{
|
|
echo '[105] Missing version directory';
|
|
exit(105);
|
|
}
|