mirror of
https://github.com/YunoHost-Apps/rainloop_ynh.git
synced 2024-09-03 20:16:18 +02:00
6d8d8c9c2b
- Admin password (for user 'admin') - Rainloop installed in /var/www/rainloop/app for SSO to work (temporary fix) - Autoconfig langage (thanks maniackcrudelis) - Autosetup all existing domains - No hook yet (not implemented for domains)
18 lines
574 B
PHP
18 lines
574 B
PHP
<?php
|
|
|
|
// Enable RainLoop Api and include index file
|
|
$_ENV['RAINLOOP_INCLUDE_AS_API'] = true;
|
|
include '/var/www/rainloop/app/index.php';
|
|
|
|
// 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
|
|
\header('Location: https://domain.tldPATHTOCHANGE/app/index.php?sso&hash='.$ssoHash);
|
|
}
|
|
else {
|
|
\header('Location: https://domain.tldPATHTOCHANGE/app/index.php');
|
|
}
|