snappymail/index.php

18 lines
317 B
PHP
Raw Permalink Normal View History

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