Added error message in case the bodystructure couldn't processed.
[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 if (!function_exists('sqm_baseuri')){
25 require_once('../functions/display_messages.php');
26 }
27 $base_uri = sqm_baseuri();
28
29 session_start();
30 is_logged_in();
31
32 /**
33 * We'll need this to later have a noframes version
34 *
35 * Check if the user has a language preference, but no cookie.
36 * Send him a cookie with his language preference, if there is
37 * such discrepancy.
38 */
39 $my_language = getPref($data_dir, $username, 'language');
40 if ($my_language != $squirrelmail_language) {
41 setcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri);
42 }
43
44 set_up_language(getPref($data_dir, $username, 'language'));
45
46 echo "<html><head>\n" .
47 "<title>$org_title</title>";
48
49 $left_size = getPref($data_dir, $username, 'left_size');
50 $location_of_bar = getPref($data_dir, $username, 'location_of_bar');
51
52 if (isset($languages[$squirrelmail_language]['DIR']) &&
53 strtolower($languages[$squirrelmail_language]['DIR']) == 'rtl') {
54 $temp_location_of_bar = 'right';
55 } else {
56 $temp_location_of_bar = 'left';
57 }
58
59 if ($location_of_bar == '') {
60 $location_of_bar = $temp_location_of_bar;
61 }
62 $temp_location_of_bar = '';
63
64 if ($left_size == "") {
65 if (isset($default_left_size)) {
66 $left_size = $default_left_size;
67 }
68 else {
69 $left_size = 200;
70 }
71 }
72
73 if ($location_of_bar == 'right') {
74 echo "<frameset cols=\"*, $left_size\" border=\"0\" id=\"fs1\">";
75 }
76 else {
77 echo "<frameset cols=\"$left_size, *\" border=\"0\" id=\"fs1\">";
78 }
79
80 /*
81 * There are three ways to call webmail.php
82 * 1. webmail.php
83 * - This just loads the default entry screen.
84 * 2. webmail.php?right_frame=right_main.php&sort=X&startMessage=X&mailbox=XXXX
85 * - This loads the frames starting at the given values.
86 * 3. webmail.php?right_frame=folders.php
87 * - Loads the frames with the Folder options in the right frame.
88 *
89 * This was done to create a pure HTML way of refreshing the folder list since
90 * we would like to use as little Javascript as possible.
91 */
92 if (!isset($right_frame)) {
93 $right_frame = '';
94 }
95 if ($right_frame == 'right_main.php') {
96 $urlMailbox = urlencode($mailbox);
97 $right_frame_url =
98 "right_main.php?mailbox=$urlMailbox&amp;sort=$sort&amp;startMessage=$startMessage";
99 } elseif ($right_frame == 'options.php') {
100 $right_frame_url = 'options.php';
101 } elseif ($right_frame == 'folders.php') {
102 $right_frame_url = 'folders.php';
103 } else if ($right_frame == '') {
104 $right_frame_url = 'right_main.php';
105 } else {
106 $right_frame_url = urldecode($right_frame);
107 }
108
109 if ($location_of_bar == 'right') {
110 echo "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">" .
111 '<FRAME SRC="left_main.php" NORESIZE NAME="left">';
112 }
113 else {
114 echo '<FRAME SRC="left_main.php" NORESIZE NAME="left">'.
115 "<FRAME SRC=\"$right_frame_url\" NORESIZE NAME=\"right\">";
116 }
117 do_hook('webmail_bottom');
118 ?>
119 </FRAMESET>
120 </HEAD></HTML>