squirrelmail/plugins/newmail/index.php
tassium 94c082f51f Initial groundwork to use phpdocumentor.
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.
2003-10-27 22:24:41 +00:00

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();
?>