bugfixes
[squirrelmail.git] / src / webmail.php
index ed6df33c8759723eacfa941c77f8ec1a16eca802..cfcf871a8be976ba2f5a0c188a58a0fe372d00c0 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
    /**
     **  webmail.php
     **
@@ -6,23 +6,37 @@
     **
     **/
 
+   session_start();
+
    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>
-<?
+<?php
    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
@@ -36,8 +50,6 @@
     This was done to create a pure HTML way of refreshing the folder list since
     we would like to use as little Javascript as possible.
 **/
-   checkForPrefs($data_dir, $username);
-
    if ($right_frame == "right_main.php") {
       $urlMailbox = urlencode($mailbox);
       echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";