Anchor the regexp. Thanks Thijs Kinkhorst.
[squirrelmail.git] / src / right_main.php
CommitLineData
59177427 1<?php
a2b193bc 2
c57b0888 3/**
4 * right_main.php
5 *
c57b0888 6 * This is where the mailboxes are listed. This controls most of what
7 * goes on in SquirrelMail.
8 *
d4e46166 9 * @copyright &copy; 1999-2009 The SquirrelMail Project Team
4b4abf93 10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 11 * @version $Id$
8f6f9ba5 12 * @package squirrelmail
c57b0888 13 */
14
ebd2391c 15/** This is the right_main page */
16define('PAGE_NAME', 'right_main');
17
202bcbcc 18//xdebug_start_profiling("/var/spool/xdebug/right_main.txt");
19
20
30967a1e 21/**
202bcbcc 22 * Include the SquirrelMail initialization file.
30967a1e 23 */
202bcbcc 24include('../include/init.php');
86725763 25
209e24bb 26/* If email_address not set and admin wants us to ask user for it,
27 * redirect to options page. */
28if ( $ask_user_info && getPref($data_dir, $username,'email_address') == "" ) {
29 header("Location: " . get_location() . "/options.php?optpage=personal");
30 exit;
31}
32
86725763 33/* SquirrelMail required files. */
202bcbcc 34require_once(SM_PATH . 'functions/imap_asearch.php');
35require_once(SM_PATH . 'functions/imap_general.php');
36require_once(SM_PATH . 'functions/imap_messages.php');
86725763 37require_once(SM_PATH . 'functions/date.php');
86725763 38require_once(SM_PATH . 'functions/mime.php');
39require_once(SM_PATH . 'functions/mailbox_display.php');
628bce99 40require_once(SM_PATH . 'functions/compose.php');
c57b0888 41
a32985a5 42/* lets get the global vars we may need */
1e12d1ff 43sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
81de00c0 44sqgetGlobalVar('delayed_errors', $delayed_errors, SQ_SESSION);
45if (is_array($delayed_errors)) {
46 $oErrorHandler->AssignDelayedErrors($delayed_errors);
47 sqsession_unregister("delayed_errors");
48}
1e12d1ff 49sqgetGlobalVar('mailbox', $mailbox);
50sqgetGlobalVar('lastTargetMailbox', $lastTargetMailbox, SQ_SESSION);
324ac3c5 51sqgetGlobalVar('targetMailbox', $lastTargetMailbox, SQ_POST);
1e12d1ff 52sqgetGlobalVar('note', $note, SQ_GET);
2ffeb7c5 53sqgetGlobalVar('mail_sent', $mail_sent, SQ_GET);
1e12d1ff 54
324ac3c5 55
54ce41dd 56if ( sqGetGlobalVarMultiple('startMessage', $temp, 'paginator_submit') ) {
324ac3c5 57 $startMessage = (int) $temp;
58} else {
59 $startMessage = 1;
a32985a5 60}
324ac3c5 61// sort => srt because of the changed behaviour which can break new behaviour
62if ( sqgetGlobalVar('srt', $temp, SQ_GET) ) {
63 $srt = (int) $temp;
a32985a5 64}
324ac3c5 65
66if ( sqgetGlobalVar('showall', $temp, SQ_GET) ) {
67 $showall = (int) $temp;
a32985a5 68}
324ac3c5 69
e0a6645e 70if (!sqgetGlobalVar('checkall',$checkall,SQ_GET)) {
71 $checkall = false;
a32985a5 72}
91c27aee 73
02def6a1 74if (!sqgetGlobalVar('preselected', $preselected, SQ_GET) || !is_array($preselected)) {
75 $preselected = array();
76} else {
77 $preselected = array_keys($preselected);
78}
79
91c27aee 80/* future work */
81if ( sqgetGlobalVar('account', $account, SQ_GET) ) {
82 $account = (int) $account;
83} else {
84 $account = 0;
85}
86
a32985a5 87/* end of get globals */
88
89
e0e30169 90/* Open an imap connection */
6f223ace 91
190dc452 92$imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0);
c57b0888 93
e0e30169 94$mailbox = (isset($mailbox) && $mailbox) ? $mailbox : 'INBOX';
324ac3c5 95
324ac3c5 96/**
97 * Set the global settings for a mailbox and merge them with the usersettings
98 * for the mailbox. In the future we can add more mailbox specific preferences
99 * preferences.
100 */
bdfb67f8 101
91c27aee 102$aMailboxPrefSer=getPref($data_dir, $username,'pref_'.$account.'_'.$mailbox);
324ac3c5 103if ($aMailboxPrefSer) {
104 $aMailboxPref = unserialize($aMailboxPrefSer);
91c27aee 105 $aMailboxPref[MBX_PREF_COLUMNS] = $index_order; // index_order contains the columns to show and the order of the columns
324ac3c5 106} else {
91c27aee 107 setUserPref($username,'pref_'.$account.'_'.$mailbox,serialize($default_mailbox_pref));
108 $aMailboxPref = $default_mailbox_pref;
324ac3c5 109}
110if (isset($srt)) {
111 $aMailboxPref[MBX_PREF_SORT] = (int) $srt;
112}
113
91c27aee 114$trash_folder = (isset($trash_folder)) ? $trash_folder : false;
115$sent_folder = (isset($sent_folder)) ? $sent_folder : false;
116$draft_folder = (isset($draft_folder)) ? $draft_folder : false;
117
324ac3c5 118
119/**
120 * until there is no per mailbox option screen to set prefs we override
121 * the mailboxprefs by the default ones
122 */
123$aMailboxPref[MBX_PREF_LIMIT] = (int) $show_num;
124$aMailboxPref[MBX_PREF_AUTO_EXPUNGE] = (bool) $auto_expunge;
125$aMailboxPref[MBX_PREF_INTERNALDATE] = (bool) getPref($data_dir, $username, 'internal_date_sort');
91c27aee 126$aMailboxPref[MBX_PREF_COLUMNS] = $index_order;
127
128/**
129 * Replace From => To in case it concerns a draft or sent folder
130 */
19285e85 131if (handleAsSent($mailbox)
132 && !in_array(SQM_COL_TO,$aMailboxPref[MBX_PREF_COLUMNS])) {
91c27aee 133 $aNewOrder = array(); // nice var name ;)
134 foreach($aMailboxPref[MBX_PREF_COLUMNS] as $iCol) {
135 if ($iCol == SQM_COL_FROM) {
136 $iCol = SQM_COL_TO;
137 }
138 $aNewOrder[] = $iCol;
139 }
140 $aMailboxPref[MBX_PREF_COLUMNS] = $aNewOrder;
141 setUserPref($username,'pref_'.$account.'_'.$mailbox,serialize($aMailboxPref));
142}
143
144
145
146/**
147 * Set the config options for the messages list
148 */
149$aColumns = array(); // contains settings per column. Switch to key -> value based array, order is the order of the array keys
150foreach ($aMailboxPref[MBX_PREF_COLUMNS] as $iCol) {
151 $aColumns[$iCol] = array();
152 switch ($iCol) {
153 case SQM_COL_SUBJ:
154 if ($truncate_subject) {
155 $aColumns[$iCol]['truncate'] = $truncate_subject;
156 }
157 break;
158 case SQM_COL_FROM:
159 case SQM_COL_TO:
160 case SQM_COL_CC:
161 case SQM_COL_BCC:
162 if ($truncate_sender) {
163 $aColumns[$iCol]['truncate'] = $truncate_sender;
164 }
165 break;
166 }
167}
168
169/**
170 * Properties required by showMessagesForMailbox
171 */
172$aProps = array(
173 'columns' => $aColumns, // columns bound settings
174 'config' => array('alt_index_colors' => $alt_index_colors, // alternating row colors (should be a template thing)
175 'highlight_list' => $message_highlight_list, // row highlighting rules
176 'fancy_index_highlite' => $fancy_index_highlite, // highlight rows on hover or on click -> check
177 'show_flag_buttons' => (isset($show_flag_buttons)) ? $show_flag_buttons : true,
178 'lastTargetMailbox' => (isset($lastTargetMailbox)) ? $lastTargetMailbox : '', // last mailbox where messages are moved/copied to
179 'trash_folder' => $trash_folder,
180 'sent_folder' => $sent_folder,
181 'draft_folder' => $draft_folder,
182 'color' => $color,
183 'enablesort' => true // enable sorting on columns
184 ),
185 'mailbox' => $mailbox,
186 'account' => (isset($account)) ? $account : 0, // future usage if we support multiple imap accounts
187 'module' => 'read_body',
188 'email' => false);
fe6efa94 189
fe6efa94 190
324ac3c5 191/**
192 * system wide admin settings and incoming vars.
193 */
194$aConfig = array(
324ac3c5 195 'user' => $username,
196 // incoming vars
91c27aee 197 'offset' => $startMessage // offset in paginator
324ac3c5 198 );
199/**
200 * The showall functionality is for the moment added to the config array
201 * to avoid storage of the showall link in the mailbox pref. We could change
202 * this behaviour later and add it to $aMailboxPref instead
203 */
204if (isset($showall)) {
91c27aee 205 $aConfig['showall'] = $showall; // show all messages in a mailbox (paginator is disabled)
206} else {
207 $showall = false;
26e90c74 208}
209
91c27aee 210
324ac3c5 211/**
212 * Retrieve the mailbox cache from the session.
213 */
214sqgetGlobalVar('mailbox_cache',$mailbox_cache,SQ_SESSION);
215
91c27aee 216/**
217 * Select the mailbox and retrieve the cached info.
218 */
219$aMailbox = sqm_api_mailbox_select($imapConnection,$account, $mailbox,$aConfig,$aMailboxPref);
324ac3c5 220
91c27aee 221/**
222 * MOVE THIS to a central init section !!!!
223 */
224if (!sqgetGlobalVar('align',$align,SQ_SESSION)) {
225 $dir = ( isset( $languages[$squirrelmail_language]['DIR']) ) ? $languages[$squirrelmail_language]['DIR'] : 'ltr';
226 if ( $dir == 'ltr' ) {
227 $align = array('left' => 'left', 'right' => 'right');
228 } else {
229 $align = array('left' => 'right', 'right' => 'left');
230 }
231 sqsession_register($align, 'align');
232}
324ac3c5 233
234/*
235 * After initialisation of the mailbox array it's time to handle the FORM data
236 */
237$sError = handleMessageListForm($imapConnection,$aMailbox);
238if ($sError) {
239 $note = $sError;
fe6efa94 240}
139b3991 241
91c27aee 242
243
324ac3c5 244/*
245 * If we try to forward messages as attachment we have to open a new window
246 * in case of compose in new window or redirect to compose.php
247 */
ae0d28a9 248$onload = '';
324ac3c5 249if (isset($aMailbox['FORWARD_SESSION'])) {
250 if ($compose_new_win) {
91c27aee 251 /* add the mailbox to the cache */
252 $mailbox_cache[$account.'_'.$aMailbox['NAME']] = $aMailbox;
253 sqsession_register($mailbox_cache,'mailbox_cache');
324ac3c5 254 // write the session in order to make sure that the compose window has
255 // access to the composemessages array which is stored in the session
256 session_write_close();
8517e764 257 // restart the session. Do not use sqsession_is_active because the session_id
258 // isn't empty after a session_write_close
3a1de9f1 259 sqsession_start();
91c27aee 260 if (!preg_match("/^[0-9]{3,4}$/", $compose_width)) {
261 $compose_width = '640';
262 }
263 if (!preg_match("/^[0-9]{3,4}$/", $compose_height)) {
264 $compose_height = '550';
265 }
266 // do not use &amp;, it will break the query string and $session will not be detected!!!
e506b6e5 267 $comp_uri = $base_uri . 'src/compose.php?mailbox='. urlencode($mailbox)
268 . '&session='.urlencode($aMailbox['FORWARD_SESSION']['SESSION_NUMBER'])
269 . '&smaction=forward_as_attachment'
270 . '&fwduid=' . implode('_', $aMailbox['FORWARD_SESSION']['UIDS']);
ae0d28a9 271 $onload = "comp_in_new('$comp_uri', $compose_width, $compose_height);";
139b3991 272 } else {
91c27aee 273 $mailbox_cache[$account.'_'.$aMailbox['NAME']] = $aMailbox;
274 sqsession_register($mailbox_cache,'mailbox_cache');
275
324ac3c5 276 // save mailboxstate
277 sqsession_register($aMailbox,'aLastSelectedMailbox');
278 session_write_close();
279 // we have to redirect to the compose page
e506b6e5 280 $location = $base_uri . 'src/compose.php?mailbox='. urlencode($mailbox)
281 . '&session='.$aMailbox['FORWARD_SESSION']['SESSION_NUMBER']
282 . '&smaction=forward_as_attachment'
283 . '&fwduid=' . implode('_', $aMailbox['FORWARD_SESSION']['UIDS']);
324ac3c5 284 header("Location: $location");
285 exit;
139b3991 286 }
6f223ace 287}
324ac3c5 288
0255b986 289// plugins can operate normally here (don't output anything, of course!),
290// but can also return TRUE if they want to enable the MOTD display
291// even when SM's MOTD is empty (there is plugin output that can
6957d227 292// be then hooked into in motd.tpl)
293// NOTE a TRUE return value here will cause the display of the MOTD on
294// *every* page view; if a plugin wants to support true MOTD (one-time
295// message display upon login), it should also check the value of
296// "just_logged_in" in the PHP session before returning TRUE.
0255b986 297//
298$show_motd = boolean_hook_function('right_main_after_header', $null, 1);
2ffeb7c5 299
ae0d28a9 300
301// get "just_logged_in" from PHP session, save it in a temp variable
302// for use below, and reset its value in PHP session
303//
304if (!sqgetGlobalVar('just_logged_in', $just_logged_in, SQ_SESSION))
305 $just_logged_in = false;
306$temp_just_logged_in = $just_logged_in;
307$just_logged_in = false;
308sqsession_register($just_logged_in, 'just_logged_in');
309
310
311// now we're done with the PHP session, can send output to browser
312//
313displayPageHeader($color, $mailbox, $onload);
314
315
2ffeb7c5 316/* display a message to the user that their mail has been sent */
317if (isset($mail_sent) && $mail_sent == 'yes') {
d7270cc4 318 $note = _("Your mail has been sent.");
2ffeb7c5 319}
c57b0888 320if (isset($note)) {
c03e9db0 321 $oTemplate->assign('note', htmlspecialchars($note));
322 $oTemplate->display('note.tpl');
c57b0888 323}
324
ae0d28a9 325if ($temp_just_logged_in || $show_motd) {
326 $motd = trim($motd);
327 if ($show_motd || strlen($motd) > 0) {
328 $oTemplate->assign('motd', $motd);
329 $oTemplate->display('motd.tpl');
23d6bd09 330 }
c57b0888 331}
91c27aee 332
91c27aee 333
324ac3c5 334if ($aMailbox['EXISTS'] > 0) {
400222be 335 $aTemplateVars = showMessagesForMailbox($imapConnection,$aMailbox,$aProps,$iError);
91c27aee 336 if ($iError) {
337
338 }
339 foreach ($aTemplateVars as $k => $v) {
340 $oTemplate->assign($k, $v);
341 }
342
343 /*
344 * TODO: To many config related vars. We should move all config related vars to
345 * one single associative array and assign that to the template
346 */
347 $oTemplate->assign('page_selector', $page_selector);
348 $oTemplate->assign('page_selector_max', $page_selector_max);
349 $oTemplate->assign('compact_paginator', $compact_paginator);
457e8593 350 $oTemplate->assign('javascript_on', checkForJavascript());
fe8103c2 351 $oTemplate->assign('base_uri', sqm_baseuri());
91c27aee 352 $oTemplate->assign('enablesort', (isset($aProps['config']['enablesort'])) ? $aProps['config']['enablesort'] : false);
29997535 353 $oTemplate->assign('icon_theme_path', $icon_theme_path);
91c27aee 354 $oTemplate->assign('aOrder', array_keys($aColumns));
355 $oTemplate->assign('alt_index_colors', isset($alt_index_colors) ? $alt_index_colors: false);
356 $oTemplate->assign('color', $color);
357 $oTemplate->assign('align', $align);
e0a6645e 358 $oTemplate->assign('checkall', $checkall);
02def6a1 359 $oTemplate->assign('preselected', $preselected);
91c27aee 360
969c1e9f 361 global $show_personal_names;
362 $oTemplate->assign('show_personal_names', $show_personal_names);
363
47485591 364 global $accesskey_mailbox_toggle_selected, $accesskey_mailbox_thread;
365 $oTemplate->assign('accesskey_mailbox_toggle_selected', $accesskey_mailbox_toggle_selected);
366 $oTemplate->assign('accesskey_mailbox_thread', $accesskey_mailbox_thread);
367
91c27aee 368 $oTemplate->display('message_list.tpl');
369
324ac3c5 370} else {
c03e9db0 371 $oTemplate->display('empty_folder.tpl');
324ac3c5 372}
7c612fdd 373
6e515418 374do_hook('right_main_bottom', $null);
c57b0888 375sqimap_logout ($imapConnection);
580e80b8 376$oTemplate->display('footer.tpl');
377
dcc1cc82 378
324ac3c5 379/* add the mailbox to the cache */
91c27aee 380$mailbox_cache[$account.'_'.$aMailbox['NAME']] = $aMailbox;
324ac3c5 381sqsession_register($mailbox_cache,'mailbox_cache');