phpDoc and i18n fixes.
[squirrelmail.git] / index.php
index 0356f058afbfcf543e647a8ae1a1ff31231b3bce..ffc8ee5b9e573c29ffe42ee4fee9ae4bd3aef4d1 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,19 +1,25 @@
 <?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.
   **
   **  Redirects to the login page.
   **
   **  $Id$
   **/
+/**
+ * index.php -- Redirect to the login page.
+ *
* Copyright (c) 1999-2005 The SquirrelMail Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
* Redirects to the login page.
+ *
* $Id$
+ */
 
-   require_once('./functions/strings.php');
+// are we configured yet?
+if( ! file_exists ( 'config/config.php' ) ) {
+    echo "<html><body><p><strong>ERROR:</strong> Config file \"<tt>config/config.php</tt>\" 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();
-?>
\ No newline at end of file
+// if we are, go ahead to the login page.
+header("Location: src/login.php\n\n");
+
+?>
+<html></html>