72f0c0783d789e002632f9c48f4f7b2ae50674ec
[squirrelmail.git] / src / webmail.php
1 <?php
2
3 /**
4 * webmail.php -- Displays the main frameset
5 *
6 * Copyright (c) 1999-2002 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 * $Id$
14 */
15
16 require_once('../functions/strings.php');
17 require_once('../config/config.php');
18 require_once('../functions/prefs.php');
19 require_once('../functions/imap.php');
20 require_once('../functions/plugin.php');
21 require_once('../functions/i18n.php');
22 require_once('../functions/auth.php');
23
24 $base_uri = dirname(dirname($PHP_SELF)) . "/";
25
26 session_start();
27 is_logged_in();
28
29 /**
30 * We'll need this to later have a noframes version
31 *
32 * Check if the user has a language preference, but no cookie.
33 * Send him a cookie with his language preference, if there is
34 * such discrepancy.
35 */
36 $my_language = getPref($data_dir, $username, 'language');
37 if ($my_language != $squirrelmail_language) {
38 setcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri);
39 }
40
41 set_up_language(getPref($data_dir, $username, 'language'));
42
43 echo "<html><head>\n" .
44 "<TITLE>$org_title</TITLE>";
45
46 $left_size = getPref($data_dir, $username, 'left_size');
47 $location_of_bar = getPref($data_dir, $username, 'location_of_bar');
48 if ($location_of_bar == '') {
49 $location_of_bar = 'left';
50 }
51 if ($left_size == "") {
52 if (isset($default_left_size)) {
53 $left_size = $default_left_size;
54 }
55 else {
56 $left_size = 200;
57 }
58 }
59
60 if ($location_of_bar == 'right') {
61 echo "<FRAMESET COLS=\"*, $left_size\" BORDER=0>";
62 }
63 else {
64 echo "<FRAMESET COLS=\"$left_size, *\" BORDER=0>";
65 }
66
67 /*
68 * There are three ways to call webmail.php
69 * 1. webmail.php
70 * - This just loads the default entry screen.
71 * 2. webmail.php?right_frame=right_main.php&sort=X&startMessage=X&mailbox=XXXX
72 * - This loads the frames starting at the given values.
73 * 3. webmail.php?right_frame=folders.php
74 * - Loads the frames with the Folder options in the right frame.
75 *
76 * This was done to create a pure HTML way of refreshing the folder list since
77 * we would like to use as little Javascript as possible.
78 */
79 if (!isset($right_frame)) {
80 $right_frame = '';
81 }
82
83 if ($right_frame == 'right_main.php') {
84 $urlMailbox = urlencode($mailbox);
85 $right_frame_url =
86 "right_main.php?mailbox=$urlMailbox&amp;sort=$sort&amp;startMessage=$startMessage";
87 } elseif ($right_frame == 'options.php') {
88 $right_frame_url = 'options.php';
89 } elseif ($right_frame == 'folders.php') {
90 $right_frame_url = 'folders.php';
91 } elseif ($right_frame == 'compose.php') {
92 $right_frame_url = "compose.php?send_to=$rcptaddress";
93 } else {
94 $right_frame_url = 'right_main.php';
95 }
96
97 if ($location_of_bar == 'right') {
98 echo "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">" .
99 '<FRAME SRC="left_main.php" NORESIZE NAME="left">';
100 }
101 else {
102 echo '<FRAME SRC="left_main.php" NORESIZE NAME="left">'.
103 "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">";
104 }
105 do_hook('webmail_bottom');
106 ?>
107 </FRAMESET>
108 </HEAD></HTML>