Add workaround for Mercury/32 servers that will subscribe again to
[squirrelmail.git] / src / options.php
CommitLineData
59177427 1<?php
d3cdb279 2
35586184 3/**
4 * options.php
5 *
6c84ba1e 6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Displays the options page. Pulls from proper user preference files
10 * and config.php. Displays preferences as selected and other options.
11 *
30967a1e 12 * @version $Id$
8f6f9ba5 13 * @package squirrelmail
35586184 14 */
cbe5423b 15
30967a1e 16/**
17 * Path for SquirrelMail required files.
18 * @ignore
19 */
86725763 20define('SM_PATH','../');
21
22/* SquirrelMail required files. */
08185f2a 23require_once(SM_PATH . 'include/validate.php');
1e12d1ff 24require_once(SM_PATH . 'functions/global.php');
86725763 25require_once(SM_PATH . 'functions/display_messages.php');
26require_once(SM_PATH . 'functions/imap.php');
86725763 27require_once(SM_PATH . 'functions/options.php');
28require_once(SM_PATH . 'functions/strings.php');
29require_once(SM_PATH . 'functions/html.php');
62366261 30require_once(SM_PATH . 'functions/forms.php');
cbe5423b 31
cbe5423b 32/*********************************/
33/*** Build the resultant page. ***/
34/*********************************/
35
cbe5423b 36define('SMOPT_MODE_DISPLAY', 'display');
37define('SMOPT_MODE_SUBMIT', 'submit');
38define('SMOPT_MODE_LINK', 'link');
39
40define('SMOPT_PAGE_MAIN', 'main');
41define('SMOPT_PAGE_PERSONAL', 'personal');
42define('SMOPT_PAGE_DISPLAY', 'display');
5ed9d4fd 43define('SMOPT_PAGE_COMPOSE', 'compose');
cbe5423b 44define('SMOPT_PAGE_HIGHLIGHT', 'highlight');
45define('SMOPT_PAGE_FOLDER', 'folder');
46define('SMOPT_PAGE_ORDER', 'order');
47
48function process_optionmode_submit($optpage, $optpage_data) {
49 /* Initialize the maximum option refresh level. */
50 $max_refresh = SMOPT_REFRESH_NONE;
51
52 /* Save each option in each option group. */
53 foreach ($optpage_data['options'] as $option_grp) {
54 foreach ($option_grp['options'] as $option) {
534367eb 55 /* Remove Debug Mode Until Needed
cbe5423b 56 echo "name = '$option->name', "
57 . "value = '$option->value', "
6206f6c4 58 . "new_value = '$option->new_value'\n";
39bfea8f 59 echo "<br />";
534367eb 60 */
cbe5423b 61 if ($option->changed()) {
62 $option->save();
63 $max_refresh = max($max_refresh, $option->refresh_level);
64 }
65 }
66 }
1e0628fb 67
cbe5423b 68 /* Return the max refresh level. */
69 return ($max_refresh);
70}
71
72function process_optionmode_link($optpage) {
73 /* There will be something here, later. */
74}
75
0b0e96c5 76
77/**
78 * This function prints out an option page row.
79 */
80function print_optionpages_row($leftopt, $rightopt = false) {
81 global $color;
82
0b0e96c5 83 if ($rightopt) {
545238b1 84 $rightopt_name = html_tag( 'td', '<a href="' . $rightopt['url'] . '">' . $rightopt['name'] . '</a>', 'left', $color[9], 'valign="top" width="49%"' );
85 $rightopt_desc = html_tag( 'td', $rightopt['desc'], 'left', $color[0], 'valign="top" width="49%"' );
0b0e96c5 86 } else {
545238b1 87 $rightopt_name = html_tag( 'td', '&nbsp;', 'left', $color[4], 'valign="top" width="49%"' );
88 $rightopt_desc = html_tag( 'td', '&nbsp;', 'left', $color[4], 'valign="top" width="49%"' );
0b0e96c5 89 }
90
545238b1 91 echo
92 html_tag( 'table', "\n" .
93 html_tag( 'tr', "\n" .
94 html_tag( 'td', "\n" .
95 html_tag( 'table', "\n" .
96 html_tag( 'tr', "\n" .
97 html_tag( 'td',
98 '<a href="' . $leftopt['url'] . '">' . $leftopt['name'] . '</a>' ,
99 'left', $color[9], 'valign="top" width="49%"' ) .
100 html_tag( 'td',
101 '&nbsp;' ,
102 'left', $color[4], 'valign="top" width="2%"' ) . "\n" .
103 $rightopt_name
104 ) . "\n" .
105 html_tag( 'tr', "\n" .
106 html_tag( 'td',
107 $leftopt['desc'] ,
108 'left', $color[0], 'valign="top" width="49%"' ) .
109 html_tag( 'td',
110 '&nbsp;' ,
111 'left', $color[4], 'valign="top" width="2%"' ) . "\n" .
112 $rightopt_desc
113 ) ,
114 '', '', 'width="100%" cellpadding="2" cellspacing="0" border="0"' ) ,
115 'left', '', 'valign="top"' )
116 ) ,
117 '', $color[4], 'width="100%" cellpadding="0" cellspacing="5" border="0"' );
0b0e96c5 118}
119
120/* ---------------------------- main ---------------------------- */
121
a32985a5 122/* get the globals that we may need */
1e12d1ff 123sqgetGlobalVar('key', $key, SQ_COOKIE);
124sqgetGlobalVar('username', $username, SQ_SESSION);
125sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION);
126sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
127
128sqgetGlobalVar('optpage', $optpage);
5ccba4f3 129sqgetGlobalVar('optmode', $optmode, SQ_FORM);
1e12d1ff 130sqgetGlobalVar('optpage_data',$optpage_data, SQ_POST);
a32985a5 131/* end of getting globals */
132
cbe5423b 133/* Make sure we have an Option Page set. Default to main. */
c1f7790a 134if ( !isset($optpage) || $optpage == '' ) {
135 $optpage = SMOPT_PAGE_MAIN;
136} else {
137 $optpage = strip_tags( $optpage );
cbe5423b 138}
139
140/* Make sure we have an Option Mode set. Default to display. */
141if (!isset($optmode)) {
142 $optmode = SMOPT_MODE_DISPLAY;
143}
144
0b0e96c5 145/*
91e0dccc 146 * First, set the load information for each option page.
0b0e96c5 147 */
cbe5423b 148
149/* Initialize load information variables. */
150$optpage_name = '';
151$optpage_file = '';
152$optpage_loader = '';
153
154/* Set the load information for each page. */
155switch ($optpage) {
91e0dccc 156 case SMOPT_PAGE_MAIN:
c1f7790a 157 break;
cbe5423b 158 case SMOPT_PAGE_PERSONAL:
a3439b27 159 $optpage_name = _("Personal Information");
08185f2a 160 $optpage_file = SM_PATH . 'include/options/personal.php';
a3439b27 161 $optpage_loader = 'load_optpage_data_personal';
162 $optpage_loadhook = 'optpage_loadhook_personal';
cbe5423b 163 break;
164 case SMOPT_PAGE_DISPLAY:
165 $optpage_name = _("Display Preferences");
08185f2a 166 $optpage_file = SM_PATH . 'include/options/display.php';
cbe5423b 167 $optpage_loader = 'load_optpage_data_display';
a3439b27 168 $optpage_loadhook = 'optpage_loadhook_display';
cbe5423b 169 break;
5ed9d4fd 170 case SMOPT_PAGE_COMPOSE:
171 $optpage_name = _("Compose Preferences");
172 $optpage_file = SM_PATH . 'include/options/compose.php';
173 $optpage_loader = 'load_optpage_data_compose';
174 $optpage_loadhook = 'optpage_loadhook_compose';
175 break;
cbe5423b 176 case SMOPT_PAGE_HIGHLIGHT:
177 $optpage_name = _("Message Highlighting");
08185f2a 178 $optpage_file = SM_PATH . 'include/options/highlight.php';
cbe5423b 179 $optpage_loader = 'load_optpage_data_highlight';
a3439b27 180 $optpage_loadhook = 'optpage_loadhook_highlight';
cbe5423b 181 break;
182 case SMOPT_PAGE_FOLDER:
183 $optpage_name = _("Folder Preferences");
08185f2a 184 $optpage_file = SM_PATH . 'include/options/folder.php';
cbe5423b 185 $optpage_loader = 'load_optpage_data_folder';
a3439b27 186 $optpage_loadhook = 'optpage_loadhook_folder';
cbe5423b 187 break;
188 case SMOPT_PAGE_ORDER:
189 $optpage_name = _("Index Order");
08185f2a 190 $optpage_file = SM_PATH . 'include/options/order.php';
cbe5423b 191 $optpage_loader = 'load_optpage_data_order';
a3439b27 192 $optpage_loadhook = 'optpage_loadhook_order';
cbe5423b 193 break;
2fad95fa 194 default: do_hook('optpage_set_loadinfo');
cbe5423b 195}
196
197/**********************************************************/
198/*** Second, load the option information for this page. ***/
199/**********************************************************/
200
a32985a5 201if ( !@is_file( $optpage_file ) ) {
c1f7790a 202 $optpage = SMOPT_PAGE_MAIN;
203} else if ($optpage != SMOPT_PAGE_MAIN ) {
cbe5423b 204 /* Include the file for this optionpage. */
91e0dccc 205
cbe5423b 206 require_once($optpage_file);
207
208 /* Assemble the data for this option page. */
209 $optpage_data = array();
210 $optpage_data = $optpage_loader();
a3439b27 211 do_hook($optpage_loadhook);
cbe5423b 212 $optpage_data['options'] =
213 create_option_groups($optpage_data['grps'], $optpage_data['vals']);
214}
215
216/***********************************************************/
217/*** Next, process anything that needs to be processed. ***/
218/***********************************************************/
219
288df1a0 220$optpage_save_error=array();
221
cc61478a 222if ( isset( $optpage_data ) ) {
223 switch ($optmode) {
224 case SMOPT_MODE_SUBMIT:
225 $max_refresh = process_optionmode_submit($optpage, $optpage_data);
226 break;
227 case SMOPT_MODE_LINK:
228 $max_refresh = process_optionmode_link($optpage, $optpage_data);
229 break;
230 }
cbe5423b 231}
cbe5423b 232
233$optpage_title = _("Options");
234if (isset($optpage_name) && ($optpage_name != '')) {
235 $optpage_title .= " - $optpage_name";
236}
f740c049 237
cbe5423b 238/*******************************************************************/
239/* DO OLD SAVING OF SUBMITTED OPTIONS. THIS WILL BE REMOVED LATER. */
240/*******************************************************************/
241
242/* If in submit mode, select a save hook name and run it. */
7e235a1a 243if ($optmode == SMOPT_MODE_SUBMIT) {
cbe5423b 244 /* Select a save hook name. */
245 switch ($optpage) {
246 case SMOPT_PAGE_PERSONAL:
247 $save_hook_name = 'options_personal_save';
248 break;
249 case SMOPT_PAGE_DISPLAY:
250 $save_hook_name = 'options_display_save';
251 break;
252 case SMOPT_PAGE_FOLDER:
253 $save_hook_name = 'options_folder_save';
254 break;
91e0dccc 255 default:
cc61478a 256 $save_hook_name = 'options_save';
cbe5423b 257 break;
258 }
b5efadfa 259
cbe5423b 260 /* Run the options save hook. */
261 do_hook($save_hook_name);
262}
263
264/***************************************************************/
265/* Apply logic to decide what optpage we want to display next. */
266/***************************************************************/
267
268/* If this is the result of an option page being submitted, then */
269/* show the main page. Otherwise, show whatever page was called. */
270
271if ($optmode == SMOPT_MODE_SUBMIT) {
272 $optpage = SMOPT_PAGE_MAIN;
273}
274
275/***************************************************************/
276/* Finally, display whatever page we are supposed to show now. */
277/***************************************************************/
278
4081f486 279displayPageHeader($color, 'None', (isset($optpage_data['xtra']) ? $optpage_data['xtra'] : ''));
280
281echo html_tag( 'table', '', 'center', $color[0], 'width="95%" cellpadding="1" cellspacing="0" border="0"' ) . "\n" .
282 html_tag( 'tr' ) . "\n" .
283 html_tag( 'td', '', 'center' ) .
39bfea8f 284 "<b>$optpage_title</b><br />\n".
4081f486 285 html_tag( 'table', '', '', '', 'width="100%" cellpadding="5" cellspacing="0" border="0"' ) . "\n" .
286 html_tag( 'tr' ) . "\n" .
287 html_tag( 'td', '', 'center', $color[4] ) . "\n";
288
cbe5423b 289/*
290 * The main option page has a different layout then the rest of the option
291 * pages. Therefore, we create it here first, then the others below.
292 */
293if ($optpage == SMOPT_PAGE_MAIN) {
294 /**********************************************************/
295 /* First, display the results of a submission, if needed. */
296 /**********************************************************/
297 if ($optmode == SMOPT_MODE_SUBMIT) {
e362fff6 298 if (!isset($frame_top)) {
d03f3582 299 $frame_top = '_top';
300 }
288df1a0 301
302 if (isset($optpage_save_error) && $optpage_save_error!=array()) {
303 echo "<font color=\"$color[2]\"><b>" . _("Error(s) happened while saving your options") . "</b></font><br />\n";
304 echo "<ul>\n";
305 foreach ($optpage_save_error as $error_message) {
306 echo '<li><small>' . $error_message . "</small></li>\n";
307 }
308 echo "</ul>\n";
309 echo '<b>' . _("Some of your preference changes are not applied.") . "</b><br />\n";
310 } else {
311 /* Display a message indicating a successful save. */
39bfea8f 312 echo '<b>' . _("Successfully Saved Options") . ": $optpage_name</b><br />\n";
288df1a0 313 }
cbe5423b 314
315 /* If $max_refresh != SMOPT_REFRESH_NONE, provide a refresh link. */
88cb1b4d 316 if ( !isset( $max_refresh ) ) {
317 } else if ($max_refresh == SMOPT_REFRESH_FOLDERLIST) {
39bfea8f 318 echo '<a href="../src/left_main.php" target="left">' . _("Refresh Folder List") . '</a><br />';
cbe5423b 319 } else if ($max_refresh) {
39bfea8f 320 echo '<a href="../src/webmail.php?right_frame=options.php" target="' . $frame_top . '">' . _("Refresh Page") . '</a><br />';
849bdf42 321 }
849bdf42 322 }
cbe5423b 323 /******************************************/
324 /* Build our array of Option Page Blocks. */
325 /******************************************/
326 $optpage_blocks = array();
849bdf42 327
328 /* Build a section for Personal Options. */
cbe5423b 329 $optpage_blocks[] = array(
849bdf42 330 'name' => _("Personal Information"),
cbe5423b 331 'url' => 'options.php?optpage=' . SMOPT_PAGE_PERSONAL,
849bdf42 332 'desc' => _("This contains personal information about yourself such as your name, your email address, etc."),
333 'js' => false
334 );
335
336 /* Build a section for Display Options. */
cbe5423b 337 $optpage_blocks[] = array(
849bdf42 338 'name' => _("Display Preferences"),
cbe5423b 339 'url' => 'options.php?optpage=' . SMOPT_PAGE_DISPLAY,
849bdf42 340 'desc' => _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings."),
341 'js' => false
342 );
343
344 /* Build a section for Message Highlighting Options. */
cbe5423b 345 $optpage_blocks[] = array(
849bdf42 346 'name' =>_("Message Highlighting"),
347 'url' => 'options_highlight.php',
99aaff8b 348 'desc' =>_("Based upon given criteria, incoming messages can have different background colors in the message list. This helps to easily distinguish who the messages are from, especially for mailing lists."),
849bdf42 349 'js' => false
350 );
351
352 /* Build a section for Folder Options. */
cbe5423b 353 $optpage_blocks[] = array(
849bdf42 354 'name' => _("Folder Preferences"),
cbe5423b 355 'url' => 'options.php?optpage=' . SMOPT_PAGE_FOLDER,
849bdf42 356 'desc' => _("These settings change the way your folders are displayed and manipulated."),
357 'js' => false
358 );
359
360 /* Build a section for Index Order Options. */
cbe5423b 361 $optpage_blocks[] = array(
849bdf42 362 'name' => _("Index Order"),
363 'url' => 'options_order.php',
8aedb8c7 364 'desc' => _("The order of the message index can be rearranged and changed to contain the headers in any order you want."),
849bdf42 365 'js' => false
366 );
5ed9d4fd 367
368 /* Build a section for Compose Options. */
369 $optpage_blocks[] = array(
370 'name' => _("Compose Preferences"),
371 'url' => 'options.php?optpage=' . SMOPT_PAGE_COMPOSE,
372 'desc' => _("Control the behaviour and layout of writing new mail messages, replying to and forwarding messages."),
373 'js' => false
374 );
cbe5423b 375
849bdf42 376 /* Build a section for plugins wanting to register an optionpage. */
cbe5423b 377 do_hook('optpage_register_block');
849bdf42 378
379 /*****************************************************/
380 /* Let's sort Javascript Option Pages to the bottom. */
381 /*****************************************************/
cbe5423b 382 $js_optpage_blocks = array();
383 $reg_optpage_blocks = array();
384 foreach ($optpage_blocks as $cur_optpage) {
812e328a 385 if (!isset($cur_optpage['js']) || !$cur_optpage['js']) {
cbe5423b 386 $reg_optpage_blocks[] = $cur_optpage;
23d6bd09 387 } else if ($javascript_on == SMPREF_JS_ON) {
cbe5423b 388 $js_optpage_blocks[] = $cur_optpage;
849bdf42 389 }
390 }
cbe5423b 391 $optpage_blocks = array_merge($reg_optpage_blocks, $js_optpage_blocks);
849bdf42 392
393 /********************************************/
394 /* Now, print out each option page section. */
395 /********************************************/
396 $first_optpage = false;
545238b1 397 echo html_tag( 'table', '', '', $color[4], 'width="100%" cellpadding="0" cellspacing="5" border="0"' ) . "\n" .
398 html_tag( 'tr' ) . "\n" .
399 html_tag( 'td', '', 'left', '', 'valign="top"' ) .
400 html_tag( 'table', '', '', $color[4], 'width="100%" cellpadding="3" cellspacing="0" border="0"' ) . "\n" .
401 html_tag( 'tr' ) . "\n" .
402 html_tag( 'td', '', 'left' );
cbe5423b 403 foreach ($optpage_blocks as $next_optpage) {
849bdf42 404 if ($first_optpage == false) {
405 $first_optpage = $next_optpage;
406 } else {
407 print_optionpages_row($first_optpage, $next_optpage);
408 $first_optpage = false;
409 }
410 }
411
412 if ($first_optpage != false) {
413 print_optionpages_row($first_optpage);
414 }
415
545238b1 416 echo "</td></tr></table></td></tr></table>\n";
dfec863e 417
849bdf42 418 do_hook('options_link_and_description');
419
cbe5423b 420
421/*************************************************************************/
422/* If we are not looking at the main option page, display the page here. */
423/*************************************************************************/
424} else {
c435f076 425 echo addForm('options.php', 'post', 'f')
cbe5423b 426 . create_optpage_element($optpage)
bd9bbfef 427 . create_optmode_element(SMOPT_MODE_SUBMIT)
c435f076 428 . html_tag( 'table', '', '', '', 'width="100%" cellpadding="2" cellspacing="0" border="0"' ) . "\n";
cbe5423b 429
430 /* Output the option groups for this page. */
431 print_option_groups($optpage_data['options']);
432
cbe5423b 433 /* Set the inside_hook_name and submit_name. */
434 switch ($optpage) {
435 case SMOPT_PAGE_PERSONAL:
436 $inside_hook_name = 'options_personal_inside';
437 $bottom_hook_name = 'options_personal_bottom';
438 $submit_name = 'submit_personal';
439 break;
440 case SMOPT_PAGE_DISPLAY:
441 $inside_hook_name = 'options_display_inside';
442 $bottom_hook_name = 'options_display_bottom';
443 $submit_name = 'submit_display';
444 break;
445 case SMOPT_PAGE_HIGHLIGHT:
446 $inside_hook_name = 'options_highlight_inside';
2fad95fa 447 $bottom_hook_name = 'options_highlight_bottom';
cbe5423b 448 $submit_name = 'submit_highlight';
449 break;
450 case SMOPT_PAGE_FOLDER:
451 $inside_hook_name = 'options_folder_inside';
2fad95fa 452 $bottom_hook_name = 'options_folder_bottom';
cbe5423b 453 $submit_name = 'submit_folder';
454 break;
455 case SMOPT_PAGE_ORDER:
456 $inside_hook_name = 'options_order_inside';
457 $bottom_hook_name = 'options_order_bottom';
458 $submit_name = 'submit_order';
459 break;
460 default:
461 $inside_hook_name = '';
462 $bottom_hook_name = '';
463 $submit_name = 'submit';
464 }
465
466 /* If it is not empty, trigger the inside hook. */
467 if ($inside_hook_name != '') {
91e0dccc 468 do_hook($inside_hook_name);
cbe5423b 469 }
470
471 /* Spit out a submit button. */
472 OptionSubmit($submit_name);
c435f076 473 echo '</table></form>';
cbe5423b 474
475 /* If it is not empty, trigger the bottom hook. */
476 if ($bottom_hook_name != '') {
91e0dccc 477 do_hook($bottom_hook_name);
cbe5423b 478 }
479}
dcc1cc82 480?>
39bfea8f 481</td></tr>
482</table>
483</td></tr>
484</table>
5ed9d4fd 485</body></html>