Add RFC 2231 support. Thanks to Piotr Pawlow. (#2501379)
[squirrelmail.git] / src / index.php
CommitLineData
9b79af33 1<?php
895905c0 2
35586184 3/**
15e6162e 4 * index.php
35586184 5 *
15e6162e 6 * This file simply takes any attempt to view source files and sends those
e392edc2 7 * people to the login screen. At this point no attempt is made to see if the
8 * person is logged in or not.
15e6162e 9 *
4b5049de 10 * @copyright &copy; 1999-2007 The SquirrelMail Project Team
e392edc2 11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 12 * @version $Id$
8f6f9ba5 13 * @package squirrelmail
35586184 14 */
9b79af33 15
e392edc2 16header('Location: ../index.php');
15e6162e 17
91e0dccc 18?>