mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
be45d989f8
Fix idn encoder Small fixes
19 lines
559 B
PHP
19 lines
559 B
PHP
<?php
|
|
|
|
/**
|
|
* ownCloud - RainLoop mail plugin
|
|
*
|
|
* @author RainLoop Team
|
|
* @copyright 2014 RainLoop Team
|
|
*
|
|
* https://github.com/RainLoop/rainloop-webmail/tree/master/build/owncloud
|
|
*/
|
|
|
|
OCP\User::checkAdminUser();
|
|
|
|
OCP\Util::addScript('rainloop', 'admin');
|
|
|
|
$oTemplate = new OCP\Template('rainloop', 'admin');
|
|
$oTemplate->assign('rainloop-url', OCP\Config::getAppValue('rainloop', 'rainloop-url', ''));
|
|
$oTemplate->assign('rainloop-sso-key', OCP\Config::getAppValue('rainloop', 'rainloop-sso-key', ''));
|
|
return $oTemplate->fetchPage();
|