Added use of $imapPort
[squirrelmail.git] / src / webmail.php
index 05601d9eb01f5f1b38d769163a67149c404bda3d..41cf17c25ab07d53b35da0957b42c659b5464c01 100644 (file)
@@ -7,22 +7,33 @@
     **/
 
    if(!isset($username)) {
-      echo "You need a valid user and password to access this page!";
+      echo _("You need a valid user and password to access this page!");
       exit;
    }
 
    setcookie("username", $username, 0, "/");
    setcookie("key", $key, 0, "/");
    setcookie("logged_in", 1, 0, "/");
+   // Refresh the language cookie.
+   if (isset($squirrelmail_language))
+      setcookie("squirrelmail_language", $squirrelmail_language,
+                time()+2592000);
 ?>
 <HTML><HEAD>
 <?
    include ("../config/config.php");
    include ("../functions/prefs.php");
+   include ("../functions/imap.php");
+
+   // verify that username and password are correct
+   $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
+   
+   include ("../src/load_prefs.php");
+   
    echo "<TITLE>";
    echo "$org_title";
    echo "</TITLE>";
-   echo "<FRAMESET COLS=\"200, *\" NORESIZE BORDER=0>";
+   echo "<FRAMESET COLS=\"$left_size, *\" NORESIZE BORDER=0>";
 
 /**
     There are three ways to call webmail.php