2015-10-07 21:23:28 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Enable RainLoop Api and include index file
|
|
|
|
$_ENV['RAINLOOP_INCLUDE_AS_API'] = true;
|
2015-10-07 22:07:10 +02:00
|
|
|
include '/var/www/rainloop/index.php';
|
2015-10-07 21:23:28 +02:00
|
|
|
|
|
|
|
// Retrieve email and password
|
|
|
|
if (isset($_SERVER['HTTP_EMAIL']) && isset($_SERVER['PHP_AUTH_PW'])) {
|
|
|
|
$email = $_SERVER['HTTP_EMAIL'];
|
|
|
|
$password = $_SERVER['PHP_AUTH_PW'];
|
|
|
|
$ssoHash = \RainLoop\Api::GetUserSsoHash($email, $password);
|
|
|
|
|
|
|
|
// redirect to webmail sso url
|
2015-10-07 22:02:12 +02:00
|
|
|
\header('Location: https://domain.tldPATHTOCHANGE/index.php?sso&hash='.$ssoHash);
|
2015-10-07 21:23:28 +02:00
|
|
|
}
|
|
|
|
else {
|
2015-10-07 22:02:12 +02:00
|
|
|
\header('Location: https://domain.tldPATHTOCHANGE/index.php');
|
2015-10-07 21:23:28 +02:00
|
|
|
}
|