No longer requires both body and subject. One of them is enough.
[squirrelmail.git] / src / webmail.php
index aaaaf785a0ffe7643d2ed728c415915705e4a3b2..a60a1793a066ab946b130667a45c8f0d2686fa02 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
    /**
     **  webmail.php
     **
@@ -6,37 +6,57 @@
     **
     **/
 
+   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>
-<TITLE>
-<?
+<?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";
-?>
-</TITLE>
-<FRAMESET COLS="200, *" NORESIZE BORDER=0>
+   echo "</TITLE>";
+   $ishelp = substr(getenv(REQUEST_URI),-8);                   // If calling help, set left frame to 300
+   if ($ishelp == "help.php") {                        
+      echo "<FRAMESET COLS=\"300, *\" NORESIZE BORDER=0>";
+   } else {
+      echo "<FRAMESET COLS=\"$left_size, *\" NORESIZE BORDER=0>";
+   }
 
 /**
-    There are three ways to call webmail.php
+    There are four ways to call webmail.php
     1.  webmail.php
-         - this just loads the default entry screen.
+         - This just loads the default entry screen.
     2.  webmail.php?right_frame=right_main.php&sort=X&startMessage=X&mailbox=XXXX
          - This loads the frames starting at the given values.
     3.  webmail.php?right_frame=folders.php
          - Loads the frames with the Folder options in the right frame.
+    4.  webmail.php?right_frame=help.php
+        - Lets the left frame set up different menu for help and calls the right frame.
 
     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.
 **/
-<?
    if ($right_frame == "right_main.php") {
       $urlMailbox = urlencode($mailbox);
       echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
       $urlMailbox = urlencode($mailbox);
       echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
       echo "<FRAME SRC=\"folders.php\" NAME=\"right\">";
+   } else if ($right_frame == "help.php") {
+      echo "<FRAME SRC=\"left_help.php\" NAME=\"left\">";
+      echo "<FRAME SRC=\"help.php\" NAME=\"right\">";
    } else {
       echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
       echo "<FRAME SRC=\"right_main.php\" NAME=\"right\">";
    }
+
 ?>
 </FRAMESET>
 </HEAD></HTML>