Included no -- prefix support for signature.
[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 session_start();
15
16 if (!isset($strings_php))
17 include('../functions/strings.php');
18 if (!isset($config_php))
19 include('../config/config.php');
20 if (!isset($page_header_php))
21 include('../functions/page_header.php');
22 if (!isset($display_messages_php))
23 include('../functions/display_messages.php');
24 if (!isset($imap_php))
25 include('../functions/imap.php');
26 if (!isset($array_php))
27 include('../functions/array.php');
28 if (!isset($i18n_php))
29 include('../functions/i18n.php');
30 if (!isset($auth_php))
31 include ('../functions/auth.php');
32
33 if (isset($language)) {
34 setcookie('squirrelmail_language', $language, time()+2592000);
35 $squirrelmail_language = $language;
36 }
37
38 include('../src/load_prefs.php');
39 displayPageHeader($color, 'None');
40 is_logged_in();
41 ?>
42
43 <br>
44 <table width="95%" align="center" cellpadding="2" cellspacing="2" border="0">
45 <tr><td bgcolor="<?php echo $color[0] ?>">
46 <center><b><?php echo _("Options") ?></b></center>
47 </td></tr></table>
48
49 <?php
50 if (isset($submit_personal)) {
51 # Save personal information
52 if (isset($full_name)) setPref($data_dir, $username, 'full_name', $full_name);
53 if (isset($email_address)) setPref($data_dir, $username, 'email_address', $email_address);
54 if (isset($reply_to)) setPref($data_dir, $username, 'reply_to', $reply_to);
55 setPref($data_dir, $username, 'use_signature', $usesignature);
56 setPref($data_dir, $username, 'prefix_sig', $prefixsig);
57 if (isset($signature_edit)) setSig($data_dir, $username, $signature_edit);
58
59 do_hook('options_personal_save');
60
61 echo '<br><center><b>'._("Successfully saved personal information!").'</b></center><br>';
62 } else if (isset($submit_display)) {
63 # Save display preferences
64 setPref($data_dir, $username, 'chosen_theme', $chosentheme);
65 setPref($data_dir, $username, 'show_num', $shownum);
66 setPref($data_dir, $username, 'wrap_at', $wrapat);
67 setPref($data_dir, $username, 'editor_size', $editorsize);
68 setPref($data_dir, $username, 'left_refresh', $leftrefresh);
69 setPref($data_dir, $username, 'language', $language);
70 setPref($data_dir, $username, 'location_of_bar', $folder_new_location);
71 setPref($data_dir, $username, 'location_of_buttons', $button_new_location);
72 setPref($data_dir, $username, 'left_size', $leftsize);
73 setPref($data_dir, $username, 'use_javascript_addr_book', $javascript_abook);
74
75 do_hook('options_display_save');
76
77 echo '<br><center><b>'._("Successfully saved display preferences!").'</b><br>';
78 echo '<a href="../src/webmail.php" target=_top>' . _("Refresh Page") . '</a></center><br>';
79 } else if (isset($submit_folder)) {
80 # Save folder preferences
81 if ($trash != 'none') {
82 setPref($data_dir, $username, 'move_to_trash', true);
83 setPref($data_dir, $username, 'trash_folder', $trash);
84 } else {
85 setPref($data_dir, $username, 'move_to_trash', '0');
86 setPref($data_dir, $username, 'trash_folder', 'none');
87 }
88 if ($sent != 'none') {
89 setPref($data_dir, $username, 'move_to_sent', true);
90 setPref($data_dir, $username, 'sent_folder', $sent);
91 } else {
92 setPref($data_dir, $username, 'move_to_sent', '0');
93 setPref($data_dir, $username, 'sent_folder', 'none');
94 }
95 setPref($data_dir, $username, 'folder_prefix', $folderprefix);
96 setPref($data_dir, $username, 'unseen_notify', $unseennotify);
97 setPref($data_dir, $username, 'unseen_type', $unseentype);
98 do_hook('options_folders_save');
99 echo '<br><center><b>'._("Successfully saved folder preferences!").'</b><br>';
100 echo '<a href="../src/left_main.php" target=left>' . _("Refresh Folder List") . '</a></center><br>';
101 } else {
102 do_hook('options_save');
103 }
104
105 ?>
106
107
108 <table width="90%" cellpadding="0" cellspacing="10" border="0" align="center">
109 <tr>
110 <td width="50%" valign="top">
111 <table width="100%" cellpadding="3" cellspacing="0" border="0">
112 <tr>
113 <td bgcolor="<?php echo $color[9] ?>">
114 <a href="options_personal.php"><?php echo _("Personal Information"); ?></a>
115 </td>
116 </tr>
117 <tr>
118 <td bgcolor="<?php echo $color[0] ?>">
119 <?php echo _("This contains personal information about yourself such as your name, your email address, etc.") ?>
120 </td>
121 </tr>
122 </table><br>
123 <table width="100%" cellpadding="3" cellspacing="0" border="0">
124 <tr>
125 <td bgcolor="<?php echo $color[9] ?>">
126 <a href="options_highlight.php"><?php echo _("Message Highlighting"); ?></a>
127 </td>
128 </tr>
129 <tr>
130 <td bgcolor="<?php echo $color[0] ?>">
131 <?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.") ?>
132 </td>
133 </tr>
134 </table><br>
135 <table width="100%" cellpadding="3" cellspacing="0" border="0">
136 <tr>
137 <td bgcolor="<?php echo $color[9] ?>">
138 <a href="options_order.php"><?php echo _("Index Order"); ?></a>
139 </td>
140 </tr>
141 <tr>
142 <td bgcolor="<?php echo $color[0] ?>">
143 <?php echo _("The order of the message index can be rearanged and changed to contain the headers in any order you want.") ?>
144 </td>
145 </tr>
146 </table><br>
147 </td>
148 <td valign="top" width="50%">
149 <table width="100%" cellpadding="3" cellspacing="0" border="0">
150 <tr>
151 <td bgcolor="<?php echo $color[9] ?>">
152 <a href="options_display.php"><?php echo _("Display Preferences"); ?></a>
153 </td>
154 </tr>
155 <tr>
156 <td bgcolor="<?php echo $color[0] ?>">
157 <?php echo _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings.") ?>
158 </td>
159 </tr>
160 </table><br>
161 <table width="100%" cellpadding="3" cellspacing="0" border="0">
162 <tr>
163 <td bgcolor="<?php echo $color[9] ?>">
164 <a href="options_folder.php"><?php echo _("Folder Preferences"); ?></a>
165 </td>
166 </tr>
167 <tr>
168 <td bgcolor="<?php echo $color[0] ?>">
169 <?php echo _("These settings change the way your folders are displayed and manipulated.") ?>
170 </td>
171 </tr>
172 </table><br>
173 </td>
174 </tr>
175 </table>
176 <?php
177 do_hook('options_link_and_description')
178 ?>
179 </body></html>