Add PHP5-style constructor
[squirrelmail.git] / index.php
index 1ece875f6c09d8f297a47d91b1f6ce7898ede7cf..70f19568ab939b5abdcefead614a4557fe5f9616 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,20 +1,24 @@
 <?php
 
 /**
- * index.php -- Displays the main frameset
- *
- * Copyright (c) 1999-2001 The SquirrelMail Development Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
+ * index.php
  *
  * Redirects to the login page.
  *
- * $Id$
+ * @copyright 1999-2016 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
  */
 
-require_once('./functions/strings.php');
+// Are we configured yet?
+if( ! file_exists ( 'config/config.php' ) ) {
+    echo '<html><body><p><strong>ERROR:</strong> Config file ' .
+        '&quot;<tt>config/config.php</tt>&quot; not found. You need to ' .
+        'configure SquirrelMail before you can use it.</p></body></html>';
+    exit;
+}
 
-$location = get_location();
-header("Location: $location/src/login.php\n\n");
-exit();
+// If we are, go ahead to the login page.
+header('Location: src/login.php');
 
-?>