Fixed major problems with IMAP session handling in the MIME code. This
[squirrelmail.git] / src / options_personal.php
CommitLineData
c36ed9cf 1<?php
2 /**
3 ** options_personal.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 all options relating to personal information
9 **
10 **/
11
12 session_start();
13
14 if (!isset($config_php))
15 include("../config/config.php");
16 if (!isset($strings_php))
17 include("../functions/strings.php");
18 if (!isset($page_header_php))
19 include("../functions/page_header.php");
20 if (!isset($display_messages_php))
21 include("../functions/display_messages.php");
22 if (!isset($imap_php))
23 include("../functions/imap.php");
24 if (!isset($array_php))
25 include("../functions/array.php");
26 if (!isset($i18n_php))
27 include("../functions/i18n.php");
28
29 include("../src/load_prefs.php");
30 displayPageHeader($color, "None");
31
32 $fullname = getPref($data_dir, $username, "full_name");
33 $replyto = getPref($data_dir, $username, "reply_to");
34 $email_address = getPref($data_dir, $username, "email_address");
35
36?>
37 <table width=100% align=center border=0 cellpadding=2 cellspacing=0><tr><td bgcolor="<? echo $color[0] ?>">
38 <center><b><? echo _("Options") . " - " . _("Personal Information"); ?></b></center>
39 </td></tr></table>
40
41 <form action="options.php" method=post>
42 <table width=100% cellpadding=0 cellspacing=2 border=0>
43 <tr>
44 <td align=right nowrap><? echo _("Full Name"); ?>:
45 </td><td>
46 <input size=50 type=text value="<? echo $fullname ?>" name=full_name>
47 </td>
48 </tr>
49 <tr>
50 <td align=right nowrap><? echo _("E-Mail Address"); ?>:
51 </td><td>
52 <input size=50 type=text value="<? echo $email_address ?>" name=email_address>
53 </td>
54 </tr>
55 <tr>
56 <td align=right nowrap><? echo _("Reply To"); ?>:
57 </td><td>
58 <input size=50 type=text value="<? echo $replyto ?>" name=reply_to>
59 </td>
60 </tr>
61 <tr>
62 <td align=right nowrap valign=top><br><? echo _("Signature"); ?>:
63 </td><td>
64<?
65 if ($use_signature == true)
66 echo "<input type=checkbox value=\"0\" name=usesignature checked>&nbsp;&nbsp;" . _("Use a signature") . "?<BR>";
67 else {
68 echo "<input type=checkbox value=\"1\" name=usesignature>&nbsp;&nbsp;";
69 echo _("Use a signature?");
70 echo "<BR>";
71 }
72 echo "\n<textarea name=signature_edit rows=5 cols=50>$signature_abs</textarea><br>";
73?>
74 </td>
75 </tr>
76 <tr>
77 <td>&nbsp;
78 </td><td>
79 <input type="submit" value="Submit" name="submit_personal">
80 </td>
81 </tr>
82 </table>
83 </form>
84</body></html>