bugfixes in sending
[squirrelmail.git] / src / webmail.php
1 <?php
2 /**
3 ** webmail.php
4 **
5 ** This simply creates the frames.
6 **
7 **/
8
9 session_start();
10
11 if(!isset($username)) {
12 echo _("You need a valid user and password to access this page!");
13 exit;
14 }
15
16 setcookie("username", $username, 0, "/");
17 setcookie("key", $key, 0, "/");
18 setcookie("logged_in", 1, 0, "/");
19
20 // Refresh the language cookie.
21 if (isset($squirrelmail_language)) {
22 setcookie("squirrelmail_language", $squirrelmail_language, time()+2592000);
23 }
24 ?>
25 <HTML><HEAD>
26 <?php
27 include ("../config/config.php");
28 include ("../functions/prefs.php");
29 include ("../functions/imap.php");
30
31 // verify that username and password are correct
32 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
33
34 include ("../src/load_prefs.php");
35
36 echo "<TITLE>";
37 echo "$org_title";
38 echo "</TITLE>";
39 echo "<FRAMESET COLS=\"$left_size, *\" NORESIZE BORDER=0>";
40
41 /**
42 There are three ways to call webmail.php
43 1. webmail.php
44 - this just loads the default entry screen.
45 2. webmail.php?right_frame=right_main.php&sort=X&startMessage=X&mailbox=XXXX
46 - This loads the frames starting at the given values.
47 3. webmail.php?right_frame=folders.php
48 - Loads the frames with the Folder options in the right frame.
49
50 This was done to create a pure HTML way of refreshing the folder list since
51 we would like to use as little Javascript as possible.
52 **/
53 if ($right_frame == "right_main.php") {
54 $urlMailbox = urlencode($mailbox);
55 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
56 echo "<FRAME SRC=\"right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage\" NAME=\"right\">";
57 } else if ($right_frame == "folders.php") {
58 $urlMailbox = urlencode($mailbox);
59 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
60 echo "<FRAME SRC=\"folders.php\" NAME=\"right\">";
61 } else {
62 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
63 echo "<FRAME SRC=\"right_main.php\" NAME=\"right\">";
64 }
65 ?>
66 </FRAMESET>
67 </HEAD></HTML>