Fixed ary_sort problem.
[squirrelmail.git] / src / webmail.php
CommitLineData
59177427 1<?php
c6d6fe73 2
21c3249f 3 /**
5bbe20e4 4 ** webmail.php -- Displays the main frameset
21c3249f 5 **
c6d6fe73 6 ** Copyright (c) 1999-2000 The SquirrelMail development team
5bbe20e4 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.
21c3249f 12 **
13 **/
14
5bbe20e4 15 // Before starting the session, the base URI must be known.
16 // Assuming that this file is in the src/ subdirectory (or
17 // something).
18 ereg ("(^.*/)[^/]+/[^/]+$", $PHP_SELF, $regs);
19 $base_uri = $regs[1];
20
21 session_set_cookie_params (0, $base_uri);
2a32fc83 22 session_start();
23
5bbe20e4 24 session_register ("base_uri");
25
21c3249f 26 if(!isset($username)) {
b581fa60 27 echo _("You need a valid user and password to access this page!");
21c3249f 28 exit;
29 }
30
288491a4 31 // Refresh the language cookie.
2a32fc83 32 if (isset($squirrelmail_language)) {
9f2215a1 33 setcookie("squirrelmail_language", $squirrelmail_language, time()+2592000);
2a32fc83 34 }
1b187352 35
7ce342dc 36 include ("../config/config.php");
65b14f90 37 include ("../functions/prefs.php");
19acd99f 38 include ("../functions/imap.php");
27e81758 39 if (!isset($plugin_php))
40 include ("../functions/plugin.php");
3c13b9fb 41 if (!isset($auth_php))
42 include ("../functions/auth.php");
52eefafc 43 if (!isset($strings_php))
44 include ("../functions/strings.php");
27e81758 45
985f7c88 46 if ($force_username_lowercase)
47 $username = strtolower($username);
48
c6d6fe73 49 if (!session_is_registered("user_is_logged_in") || $logged_in != 1) {
27e81758 50 do_hook ("login_before");
52eefafc 51
52 $onetimepad = OneTimePadCreate(strlen($secretkey));
53 $key = OneTimePadEncrypt($secretkey, $onetimepad);
54 session_register("onetimepad");
27e81758 55 // verify that username and password are correct
56 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
1195c340 57 sqimap_logout($imapConnection);
52eefafc 58
59 setcookie("username", $username, 0, $base_uri);
60 setcookie("key", $key, 0, $base_uri);
61 setcookie("logged_in", 1, 0, $base_uri);
62
27e81758 63 do_hook ("login_verified");
64 }
65
3c13b9fb 66 session_register ("user_is_logged_in");
67 $user_is_logged_in = true;
2848c630 68
69 include ("../src/load_prefs.php");
1b187352 70
3c13b9fb 71 echo "<html><head>\n";
8105d00f 72 echo "<TITLE>";
7ce342dc 73 echo "$org_title";
8105d00f 74 echo "</TITLE>";
07103a66 75 $ishelp = substr(getenv(REQUEST_URI),-8); // If calling help, set left frame to 300
9a732bb6 76
77 if (ishelp == 'help.php')
78 $bar_size = 300;
79 else
80 $bar_size = $left_size;
81
82 if ($location_of_bar == 'right')
83 {
84 echo "<FRAMESET COLS=\"*, $left_size\" NORESIZE=yes BORDER=0>";
07103a66 85 } else {
86 echo "<FRAMESET COLS=\"$left_size, *\" NORESIZE BORDER=0>";
87 }
ad6787f0 88
89/**
5a7af78b 90 There are three ways to call webmail.php
ad6787f0 91 1. webmail.php
a2222aa3 92 - This just loads the default entry screen.
907165ca 93 2. webmail.php?right_frame=right_main.php&sort=X&startMessage=X&mailbox=XXXX
ad6787f0 94 - This loads the frames starting at the given values.
907165ca 95 3. webmail.php?right_frame=folders.php
96 - Loads the frames with the Folder options in the right frame.
ad6787f0 97
98 This was done to create a pure HTML way of refreshing the folder list since
99 we would like to use as little Javascript as possible.
100**/
907165ca 101 if ($right_frame == "right_main.php") {
ad6787f0 102 $urlMailbox = urlencode($mailbox);
9a732bb6 103 $right_frame_url = "right_main.php?mailbox=$urlMailbox&sort=$sort&startMessage=$startMessage";
c36ed9cf 104 } else if ($right_frame == "options.php") {
9a732bb6 105 $right_frame_url = "options.php";
907165ca 106 } else if ($right_frame == "folders.php") {
9a732bb6 107 $right_frame_url = "folders.php";
ad6787f0 108 } else {
a37f3771 109 if (!isset($just_logged_in)) $just_logged_in = 0;
9a732bb6 110 $right_frame_url = "right_main.php?just_logged_in=$just_logged_in";
111 }
112
113 if ($location_of_bar == 'right')
114 {
115 echo "<FRAME SRC=\"$right_frame_url\" NAME=\"right\">";
116 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
117 }
118 else
119 {
120 echo "<FRAME SRC=\"left_main.php\" NAME=\"left\">";
121 echo "<FRAME SRC=\"$right_frame_url\" NAME=\"right\">";
ad6787f0 122 }
a2222aa3 123
ad6787f0 124?>
21c3249f 125</FRAMESET>
126</HEAD></HTML>