89b2536a7ae1dc216302d642cca6ed66a2ec7758
[squirrelmail.git] / src / webmail.php
1 <?php
2
3 /**
4 ** webmail.php -- Displays the main frameset
5 **
6 ** Copyright (c) 1999-2000 The SquirrelMail development team
7 ** Licensed under the GNU GPL. For full terms see the file COPYING.
8 **
9 ** This file generates the main frameset. The files that are
10 ** shown can be given as parameters. If the user is not logged in
11 ** this file will verify username and password.
12 **
13 **/
14
15 session_start();
16
17 if (!isset($i18n_php))
18 include ("../functions/i18n.php");
19
20 if(!isset($username)) {
21 set_up_language($squirrelmail_language);
22 echo _("You need a valid user and password to access this page!");
23 exit;
24 }
25
26 include ("../config/config.php");
27 include ("../functions/prefs.php");
28 include ("../functions/imap.php");
29 if (!isset($plugin_php))
30 include ("../functions/plugin.php");
31 if (!isset($auth_php))
32 include ("../functions/auth.php");
33 if (!isset($strings_php))
34 include ("../functions/strings.php");
35
36 include ("../src/load_prefs.php");
37
38 // We'll need this to later have a noframes version
39 set_up_language(getPref($data_dir, $username, "language"));
40
41 echo "<html><head>\n";
42 echo "<TITLE>";
43 echo "$org_title";
44 echo "</TITLE>";
45
46 $bar_size = $left_size;
47
48 if ($location_of_bar == 'right')
49 {
50 echo "<FRAMESET COLS=\"*, $left_size\" NORESIZE=yes BORDER=0>";
51 } else {
52 echo "<FRAMESET COLS=\"$left_size, *\" NORESIZE BORDER=0>";
53 }
54
55 /**
56 There are three ways to call webmail.php
57 1. webmail.php
58 - This just loads the default entry screen.
59 2. webmail.php?right_frame=right_main.php&sort=X&startMessage=X&mailbox=XXXX
60 - This loads the frames starting at the given values.
61 3. webmail.php?right_frame=folders.php
62 - Loads the frames with the Folder options in the right frame.
63
64 This was done to create a pure HTML way of refreshing the folder list since
65 we would like to use as little Javascript as possible.
66 **/
67 if ($right_frame == "right_main.php") {
68 $urlMailbox = urlencode($mailbox);
69 $right_frame_url = "right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage";
70 } else if ($right_frame == "options.php") {
71 $right_frame_url = "options.php";
72 } else if ($right_frame == "folders.php") {
73 $right_frame_url = "folders.php";
74 } else {
75 if (!isset($just_logged_in)) $just_logged_in = 0;
76 $right_frame_url = "right_main.php?just_logged_in=$just_logged_in";
77 }
78
79 if ($location_of_bar == 'right')
80 {
81 echo "<FRAME SRC=\"$right_frame_url\" NAME=\"right\">";
82 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
83 }
84 else
85 {
86 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
87 echo "<FRAME SRC=\"$right_frame_url\" NAME=\"right\">";
88 }
89
90 ?>
91 </FRAMESET>
92 </HEAD></HTML>