Current File : //home/keyhelp/www/snappymail/index.php
<?php

if (!defined('APP_VERSION'))
{
	define('APP_VERSION', '2.38.2');
	define('APP_INDEX_ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
}

if (file_exists(APP_INDEX_ROOT_PATH.'snappymail/v/'.APP_VERSION.'/include.php'))
{
	include APP_INDEX_ROOT_PATH.'snappymail/v/'.APP_VERSION.'/include.php';
}
else
{
	echo '[105] Missing snappymail/v/'.APP_VERSION.'/include.php';
	// opcache_reset is a terrible solution
//	is_callable('opcache_reset') && opcache_reset();
	// opcache_invalidate will not do everything
	is_callable('opcache_invalidate') && opcache_invalidate(__FILE__, true);
	exit(105);
}