22 lines
600 B
PHP
22 lines
600 B
PHP
<?php
|
|
/**
|
|
* Base redirection page for IMP.
|
|
*
|
|
* Copyright 1999-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (GPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/gpl.
|
|
*
|
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
|
* @category Horde
|
|
* @copyright 1999-2017 Horde LLC
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package IMP
|
|
*/
|
|
|
|
// Will redirect to login page if not authenticated.
|
|
require_once __DIR__ . '/lib/Application.php';
|
|
Horde_Registry::appInit('imp');
|
|
|
|
IMP::getInitialPage()->url->redirect();
|