Source for file right_main.php
Documentation is available at right_main.php
* This is where the mailboxes are listed. This controls most of what
* goes on in SquirrelMail.
* @copyright © 1999-2006 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: right_main.php,v 1.152 2006/09/30 07:34:47 tokul Exp $
//xdebug_start_profiling("/var/spool/xdebug/right_main.txt");
* Include the SquirrelMail initialization file.
include('../include/init.php');
/* SquirrelMail required files. */
require_once(SM_PATH .
'functions/imap_asearch.php');
require_once(SM_PATH .
'functions/imap_general.php');
require_once(SM_PATH .
'functions/imap_messages.php');
require_once(SM_PATH .
'functions/date.php');
require_once(SM_PATH .
'functions/mime.php');
require_once(SM_PATH .
'functions/mailbox_display.php');
/* lets get the global vars we may need */
$oErrorHandler->AssignDelayedErrors($delayed_errors);
$startMessage = (int)
$temp;
// sort => srt because of the changed behaviour which can break new behaviour
$account = (int)
$account;
/* Open an imap connection */
$imapConnection =
sqimap_login($username, false, $imapServerAddress, $imapPort, 0);
$mailbox =
(isset
($mailbox) &&
$mailbox) ?
$mailbox :
'INBOX';
* Set the global settings for a mailbox and merge them with the usersettings
* for the mailbox. In the future we can add more mailbox specific preferences
$aMailboxPrefSer=
getPref($data_dir, $username,'pref_'.
$account.
'_'.
$mailbox);
$aMailboxPref[MBX_PREF_COLUMNS] =
$index_order; // index_order contains the columns to show and the order of the columns
$aMailboxPref =
$default_mailbox_pref;
$trash_folder =
(isset
($trash_folder)) ?
$trash_folder :
false;
$sent_folder =
(isset
($sent_folder)) ?
$sent_folder :
false;
$draft_folder =
(isset
($draft_folder)) ?
$draft_folder :
false;
* until there is no per mailbox option screen to set prefs we override
* the mailboxprefs by the default ones
* Replace From => To in case it concerns a draft or sent folder
if (($mailbox ==
$sent_folder ||
$mailbox ==
$draft_folder) &&
$aNewOrder =
array(); // nice var name ;)
* Set the config options for the messages list
$aColumns =
array(); // contains settings per column. Switch to key -> value based array, order is the order of the array keys
$aColumns[$iCol] =
array();
$aColumns[$iCol]['truncate'] =
$truncate_subject;
$aColumns[$iCol]['truncate'] =
$truncate_sender;
* Properties required by showMessagesForMailbox
'columns' =>
$aColumns, // columns bound settings
'config' =>
array('alt_index_colors' =>
$alt_index_colors, // alternating row colors (should be a template thing)
'highlight_list' =>
$message_highlight_list, // row highlighting rules
'fancy_index_highlite' =>
$fancy_index_highlite, // highlight rows on hover or on click -> check
'show_flag_buttons' =>
(isset
($show_flag_buttons)) ?
$show_flag_buttons :
true,
'lastTargetMailbox' =>
(isset
($lastTargetMailbox)) ?
$lastTargetMailbox :
'', // last mailbox where messages are moved/copied to
'trash_folder' =>
$trash_folder,
'sent_folder' =>
$sent_folder,
'draft_folder' =>
$draft_folder,
'enablesort' =>
true // enable sorting on columns
'account' =>
(isset
($account)) ?
$account :
0, // future usage if we support multiple imap accounts
* system wide admin settings and incoming vars.
'offset' =>
$startMessage // offset in paginator
* The showall functionality is for the moment added to the config array
* to avoid storage of the showall link in the mailbox pref. We could change
* this behaviour later and add it to $aMailboxPref instead
$aConfig['showall'] =
$showall; // show all messages in a mailbox (paginator is disabled)
* Retrieve the mailbox cache from the session.
* Select the mailbox and retrieve the cached info.
* MOVE THIS to a central init section !!!!
$dir =
( isset
( $languages[$squirrelmail_language]['DIR']) ) ?
$languages[$squirrelmail_language]['DIR'] :
'ltr';
$align =
array('left' =>
'left', 'right' =>
'right');
$align =
array('left' =>
'right', 'right' =>
'left');
* After initialisation of the mailbox array it's time to handle the FORM data
* If we try to forward messages as attachment we have to open a new window
* in case of compose in new window or redirect to compose.php
if (isset
($aMailbox['FORWARD_SESSION'])) {
/* add the mailbox to the cache */
$mailbox_cache[$account.
'_'.
$aMailbox['NAME']] =
$aMailbox;
// write the session in order to make sure that the compose window has
// access to the composemessages array which is stored in the session
// restart the session. Do not use sqsession_is_active because the session_id
// isn't empty after a session_write_close
if (!preg_match("/^[0-9]{3,4}$/", $compose_width)) {
if (!preg_match("/^[0-9]{3,4}$/", $compose_height)) {
// do not use &, it will break the query string and $session will not be detected!!!
'&session='.
$aMailbox['FORWARD_SESSION'];
displayPageHeader($color, $mailbox, "comp_in_new('$comp_uri', $compose_width, $compose_height);", '');
$mailbox_cache[$account.
'_'.
$aMailbox['NAME']] =
$aMailbox;
// we have to redirect to the compose page
'&session='.
$aMailbox['FORWARD_SESSION'];
header("Location: $location");
do_hook('right_main_after_header');
/* display a message to the user that their mail has been sent */
if (isset
($mail_sent) &&
$mail_sent ==
'yes') {
$note =
_("Your Message has been sent.");
$oTemplate->display('note.tpl');
if ($just_logged_in ==
true) {
$oTemplate->assign('motd', $motd);
$oTemplate->display('motd.tpl');
if ($aMailbox['EXISTS'] >
0) {
foreach ($aTemplateVars as $k =>
$v) {
$oTemplate->assign($k, $v);
* TODO: To many config related vars. We should move all config related vars to
* one single associative array and assign that to the template
$oTemplate->assign('page_selector', $page_selector);
$oTemplate->assign('page_selector_max', $page_selector_max);
$oTemplate->assign('compact_paginator', $compact_paginator);
$oTemplate->assign('javascript_on', $javascript_on);
$oTemplate->assign('enablesort', (isset
($aProps['config']['enablesort'])) ?
$aProps['config']['enablesort'] :
false);
$oTemplate->assign('icon_theme_path', $icon_theme_path);
$oTemplate->assign('aOrder', array_keys($aColumns));
$oTemplate->assign('alt_index_colors', isset
($alt_index_colors) ?
$alt_index_colors:
false);
$oTemplate->assign('color', $color);
$oTemplate->assign('align', $align);
$oTemplate->display('message_list.tpl');
$oTemplate->display('empty_folder.tpl');
$oTemplate->display('footer.tpl');
/* add the mailbox to the cache */
$mailbox_cache[$account.
'_'.
$aMailbox['NAME']] =
$aMailbox;
Documentation generated on Sat, 07 Oct 2006 16:13:23 +0300 by phpDocumentor 1.3.0RC6