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