Just a small fix.
[squirrelmail.git] / src / options.php
CommitLineData
59177427 1<?php
ef870322 2 /**
3 ** options.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Displays the options page. Pulls from proper user preference files
9 ** and config.php. Displays preferences as selected and other options.
10 **
245a6892 11 ** $Id$
ef870322 12 **/
13
ff8a98e7 14 require_once('../src/validate.php');
15 require_once('../functions/display_messages.php');
16 require_once('../functions/imap.php');
17 require_once('../functions/array.php');
88fa922a 18
19 ereg ("(^.*/)[^/]+/[^/]+$", $PHP_SELF, $regs);
20 $base_uri = $regs[1];
d3cdb279 21
7aaa81fc 22 if (isset($language)) {
88fa922a 23 setcookie('squirrelmail_language', $language, time()+2592000, $base_uri);
c36ed9cf 24 $squirrelmail_language = $language;
37df47f5 25 }
1e0628fb 26
e7db48af 27 displayPageHeader($color, _("None"));
f740c049 28
c36ed9cf 29?>
11307a4c 30
e9f8ea4e 31<br>
e7db48af 32<table bgcolor="<?php echo $color[0] ?>" width="95%" align="center" cellpadding="2" cellspacing="0" border="0">
33<tr><td align="center">
34
35 <b><?php echo _("Options") ?></b><br>
36
37 <table width="100%" border="0" cellpadding="5" cellspacing="0">
38 <tr><td bgcolor="<?php echo $color[4] ?>" align="center">
c36ed9cf 39
6170c5b6 40<?php
245a6892 41 if (isset($submit_personal)) {
c36ed9cf 42 # Save personal information
ed21fc85 43 if (isset($full_name)) {
aaf9abef 44 setPref($data_dir, $username, 'full_name', $full_name);
ed21fc85 45 }
46 if (isset($email_address)) {
aaf9abef 47 setPref($data_dir, $username, 'email_address', $email_address);
ed21fc85 48 }
49 if (isset($reply_to)) {
aaf9abef 50 setPref($data_dir, $username, 'reply_to', $reply_to);
ed21fc85 51 }
52 setPref($data_dir, $username, 'reply_citation_style', $new_reply_citation_style);
53 setPref($data_dir, $username, 'reply_citation_start', $new_reply_citation_start);
54 setPref($data_dir, $username, 'reply_citation_end', $new_reply_citation_end);
aab2c92c 55 if (! isset($usesignature))
56 $usesignature = 0;
f740c049 57 setPref($data_dir, $username, 'use_signature', $usesignature);
ed21fc85 58 if (! isset($prefixsig)) {
f740c049 59 $prefixsig = 0;
ed21fc85 60 }
f740c049 61 setPref($data_dir, $username, 'prefix_sig', $prefixsig);
ed21fc85 62 if (isset($signature_edit)) {
63 setSig($data_dir, $username, $signature_edit);
64 }
2848c630 65
db5910ac 66 do_hook('options_personal_save');
ef3c69f0 67
e7db48af 68 echo '<br><b>'._("Successfully saved personal information!").'</b><br>';
f740c049 69 } else if (isset($submit_display)) {
70 // Do checking to make sure $chosentheme is in the array
71 $in_ary = false;
72 for ($i=0; $i < count($theme); $i++)
73 {
74 if ($theme[$i]['PATH'] == $chosentheme)
75 {
76 $in_ary = true;
77 break;
78 }
79 }
80 if (! $in_ary)
81 $chosentheme = '';
82
c36ed9cf 83 # Save display preferences
db5910ac 84 setPref($data_dir, $username, 'chosen_theme', $chosentheme);
cd41fc8d 85 setPref($data_dir, $username, 'language', $language);
86 setPref($data_dir, $username, 'use_javascript_addr_book', $javascript_abook);
db5910ac 87 setPref($data_dir, $username, 'show_num', $shownum);
88 setPref($data_dir, $username, 'wrap_at', $wrapat);
89 setPref($data_dir, $username, 'editor_size', $editorsize);
90 setPref($data_dir, $username, 'left_refresh', $leftrefresh);
9a732bb6 91 setPref($data_dir, $username, 'location_of_bar', $folder_new_location);
441f2d33 92 setPref($data_dir, $username, 'location_of_buttons', $button_new_location);
db5910ac 93 setPref($data_dir, $username, 'left_size', $leftsize);
cd41fc8d 94
95 if (isset($altIndexColors) && $altIndexColors == 1) {
ac53fb56 96 setPref($data_dir, $username, 'alt_index_colors', 1);
cd41fc8d 97 } else {
ac53fb56 98 setPref($data_dir, $username, 'alt_index_colors', 0);
cd41fc8d 99 }
100
101 if (isset($showhtmldefault)) {
e2ab93e5 102 setPref($data_dir, $username, 'show_html_default', 1);
cd41fc8d 103 } else {
e2ab93e5 104 removePref($data_dir, $username, 'show_html_default');
cd41fc8d 105 }
106
107 if (isset($includeselfreplyall)) {
a13cf243 108 setPref($data_dir, $username, 'include_self_reply_all', 1);
cd41fc8d 109 } else {
a13cf243 110 removePref($data_dir, $username, 'include_self_reply_all');
cd41fc8d 111 }
feb563a6 112
113 if (isset($pageselector)) {
114 setPref($data_dir, $username, 'page_selector', 1);
115 } else {
116 removePref($data_dir, $username, 'page_selector');
117 }
118
db5910ac 119 do_hook('options_display_save');
ef3c69f0 120
e7db48af 121 echo '<br><b>'._("Successfully saved display preferences!").'</b><br>';
122 echo '<a href="../src/webmail.php?right_frame=options.php" target=_top>' . _("Refresh Page") . '</a><br>';
245a6892 123 } else if (isset($submit_folder)) {
c36ed9cf 124 # Save folder preferences
db5910ac 125 if ($trash != 'none') {
126 setPref($data_dir, $username, 'move_to_trash', true);
127 setPref($data_dir, $username, 'trash_folder', $trash);
c36ed9cf 128 } else {
db5910ac 129 setPref($data_dir, $username, 'move_to_trash', '0');
130 setPref($data_dir, $username, 'trash_folder', 'none');
9d157cec 131 }
db5910ac 132 if ($sent != 'none') {
133 setPref($data_dir, $username, 'move_to_sent', true);
134 setPref($data_dir, $username, 'sent_folder', $sent);
c36ed9cf 135 } else {
db5910ac 136 setPref($data_dir, $username, 'move_to_sent', '0');
137 setPref($data_dir, $username, 'sent_folder', 'none');
8d636967 138 }
2e950c24 139 if (isset($folderprefix)) {
8d636967 140 setPref($data_dir, $username, 'folder_prefix', $folderprefix);
141 } else {
142 setPref($data_dir, $username, 'folder_prefix', '');
143 }
db5910ac 144 setPref($data_dir, $username, 'unseen_notify', $unseennotify);
145 setPref($data_dir, $username, 'unseen_type', $unseentype);
235a65d5 146 if (isset($collapsefolders))
147 setPref($data_dir, $username, 'collapse_folders', $collapsefolders);
148 else
149 removePref($data_dir, $username, 'collapse_folders');
db5910ac 150 do_hook('options_folders_save');
e7db48af 151 echo '<br><b>'._("Successfully saved folder preferences!").'</b><br>';
152 echo '<a href="../src/left_main.php" target=left>' . _("Refresh Folder List") . '</a><br>';
6b638171 153 } else {
db5910ac 154 do_hook('options_save');
9d157cec 155 }
6b638171 156
c36ed9cf 157?>
11307a4c 158
e7db48af 159<table bgcolor="<?php echo $color[4] ?>" width="100%" cellpadding="5" cellspacing="0" border="0">
c36ed9cf 160<tr>
db5910ac 161 <td width="50%" valign="top">
162 <table width="100%" cellpadding="3" cellspacing="0" border="0">
c36ed9cf 163 <tr>
6170c5b6 164 <td bgcolor="<?php echo $color[9] ?>">
165 <a href="options_personal.php"><?php echo _("Personal Information"); ?></a>
c36ed9cf 166 </td>
167 </tr>
168 <tr>
6170c5b6 169 <td bgcolor="<?php echo $color[0] ?>">
170 <?php echo _("This contains personal information about yourself such as your name, your email address, etc.") ?>
c36ed9cf 171 </td>
172 </tr>
173 </table><br>
db5910ac 174 <table width="100%" cellpadding="3" cellspacing="0" border="0">
c36ed9cf 175 <tr>
6170c5b6 176 <td bgcolor="<?php echo $color[9] ?>">
177 <a href="options_highlight.php"><?php echo _("Message Highlighting"); ?></a>
c36ed9cf 178 </td>
179 </tr>
180 <tr>
6170c5b6 181 <td bgcolor="<?php echo $color[0] ?>">
182 <?php echo _("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.") ?>
c36ed9cf 183 </td>
184 </tr>
185 </table><br>
db5910ac 186 <table width="100%" cellpadding="3" cellspacing="0" border="0">
8e265988 187 <tr>
188 <td bgcolor="<?php echo $color[9] ?>">
189 <a href="options_order.php"><?php echo _("Index Order"); ?></a>
190 </td>
191 </tr>
192 <tr>
193 <td bgcolor="<?php echo $color[0] ?>">
194 <?php echo _("The order of the message index can be rearanged and changed to contain the headers in any order you want.") ?>
195 </td>
196 </tr>
197 </table><br>
c36ed9cf 198 </td>
db5910ac 199 <td valign="top" width="50%">
200 <table width="100%" cellpadding="3" cellspacing="0" border="0">
c36ed9cf 201 <tr>
6170c5b6 202 <td bgcolor="<?php echo $color[9] ?>">
203 <a href="options_display.php"><?php echo _("Display Preferences"); ?></a>
c36ed9cf 204 </td>
205 </tr>
206 <tr>
6170c5b6 207 <td bgcolor="<?php echo $color[0] ?>">
208 <?php echo _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings.") ?>
c36ed9cf 209 </td>
210 </tr>
211 </table><br>
db5910ac 212 <table width="100%" cellpadding="3" cellspacing="0" border="0">
c36ed9cf 213 <tr>
6170c5b6 214 <td bgcolor="<?php echo $color[9] ?>">
215 <a href="options_folder.php"><?php echo _("Folder Preferences"); ?></a>
c36ed9cf 216 </td>
217 </tr>
218 <tr>
6170c5b6 219 <td bgcolor="<?php echo $color[0] ?>">
220 <?php echo _("These settings change the way your folders are displayed and manipulated.") ?>
c36ed9cf 221 </td>
222 </tr>
223 </table><br>
224 </td>
225</tr>
226</table>
e7db48af 227
228 <?php do_hook('options_link_and_description'); ?>
229
230
231 </td></tr>
232 </table>
233
234</td></tr>
235</table>
236
ff8a98e7 237</body></html>