
Added @package and @subpackage tags. Some cases of define() for SM_PATH were tagged @ignore to reduce the number of phpdocumentor warnings - this may need to be done everywhere else, or removed where I've done it so far. We'll see.
19 lines
392 B
PHP
19 lines
392 B
PHP
<?php
|
|
|
|
/**
|
|
** index.php -- Displays the main frameset
|
|
**
|
|
** Copyright (c) 1999-2003 The SquirrelMail development team
|
|
** Licensed under the GNU GPL. For full terms see the file COPYING.
|
|
**
|
|
** Redirects to the login page.
|
|
**
|
|
** $Id$
|
|
* @package plugins
|
|
* @subpackage newmail
|
|
**/
|
|
|
|
header("Location:../../src/login.php\n\n");
|
|
exit();
|
|
|
|
?>
|