You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			953 B
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			32 lines
		
	
	
		
			953 B
		
	
	
	
		
			PHP
		
	
| <?php
 | |
| 
 | |
| $_ENV['RAINLOOP_INCLUDE_AS_API'] = true;
 | |
| if (!defined('APP_VERSION')) {
 | |
| 	$version = file_get_contents('/data/VERSION');
 | |
| 	if ($version) {
 | |
| 		define('APP_VERSION', $version);
 | |
| 		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);
 | |
| }
 | |
| 
 | |
| // Retrieve email and password
 | |
| if (in_array('HTTP_X_REMOTE_USER', $_SERVER) && in_array('HTTP_X_REMOTE_USER_TOKEN', $_SERVER)) {
 | |
| 	$email = $_SERVER['HTTP_X_REMOTE_USER'];
 | |
| 	$password = $_SERVER['HTTP_X_REMOTE_USER_TOKEN'];
 | |
| 	$ssoHash = \RainLoop\Api::GetUserSsoHash($email, $password);
 | |
| 
 | |
| 	// redirect to webmail sso url
 | |
| 	header('Location: index.php?sso&hash='.$ssoHash);
 | |
| }
 | |
| else {
 | |
| 	header('HTTP/1.0 403 Forbidden');
 | |
| }
 |