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