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