fixed bug in color stuff
[squirrelmail.git] / src / webmail.php
CommitLineData
21c3249f 1<?
2 /**
a09387f4 3 ** webmail.php
21c3249f 4 **
5 ** This simply creates the frames.
6 **
7 **/
8
9 if(!isset($username)) {
10 echo "You need a valid user and password to access this page!";
11 exit;
12 }
13
14 setcookie("username", $username, 0, "/");
15 setcookie("key", $key, 0, "/");
16 setcookie("logged_in", 1, 0, "/");
17?>
18<HTML><HEAD>
7ce342dc 19<?
20 include ("../config/config.php");
65b14f90 21 include ("../functions/prefs.php");
8105d00f 22 echo "<TITLE>";
7ce342dc 23 echo "$org_title";
8105d00f 24 echo "</TITLE>";
25 echo "<FRAMESET COLS=\"200, *\" NORESIZE BORDER=0>";
ad6787f0 26
27/**
907165ca 28 There are three ways to call webmail.php
ad6787f0 29 1. webmail.php
30 - this just loads the default entry screen.
907165ca 31 2. webmail.php?right_frame=right_main.php&sort=X&startMessage=X&mailbox=XXXX
ad6787f0 32 - This loads the frames starting at the given values.
907165ca 33 3. webmail.php?right_frame=folders.php
34 - Loads the frames with the Folder options in the right frame.
ad6787f0 35
36 This was done to create a pure HTML way of refreshing the folder list since
37 we would like to use as little Javascript as possible.
38**/
d0747e26 39 checkForPrefs($data_dir, $username);
65b14f90 40
907165ca 41 if ($right_frame == "right_main.php") {
ad6787f0 42 $urlMailbox = urlencode($mailbox);
43 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
44 echo "<FRAME SRC=\"right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage\" NAME=\"right\">";
907165ca 45 } else if ($right_frame == "folders.php") {
46 $urlMailbox = urlencode($mailbox);
47 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
48 echo "<FRAME SRC=\"folders.php\" NAME=\"right\">";
ad6787f0 49 } else {
50 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
51 echo "<FRAME SRC=\"right_main.php\" NAME=\"right\">";
52 }
53?>
21c3249f 54</FRAMESET>
55</HEAD></HTML>