index.php 453 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * index.php
  4. *
  5. * This file simply takes any attempt to view source files and sends those
  6. * people to the login screen. At this point no attempt is made to see if the
  7. * person is logged in or not.
  8. *
  9. * @copyright 1999-2025 The SquirrelMail Project Team
  10. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  11. * @version $Id$
  12. * @package plugins
  13. * @subpackage listcommands
  14. */
  15. header('Location: ../index.php');
  16. ?>