469d7b92019e63185084f27fb45db16d71a3de62
[squirrelmail.git] / src / about.php
1 <?php
2
3 /**
4 * about.php
5 *
6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * An "about box" detailing SquirrelMail info.
10 *
11 * TODO:
12 * - Add localisation
13 * - Insert org_name, provider_url?
14 * - What more information is needed?
15 *
16 * @version $Id$
17 * @package squirrelmail
18 */
19
20 /**
21 * Path for SquirrelMail required files.
22 * @ignore
23 */
24 define('SM_PATH','../');
25
26 /* SquirrelMail required files. */
27 require_once(SM_PATH . 'include/validate.php');
28 require_once(SM_PATH . 'functions/global.php');
29
30 displayPageHeader($color, 'None' );
31
32 ?>
33 <p align="center">
34 <img src="../images/sm_logo.png" width="308" height="111"
35 alt="SquirrelMail Logo" /><br />
36 <table align="center" width="80%" cellpadding="1" cellspacing="2" border="0">
37 <tr><td bgcolor="#dcdcdc" align="center"><center><b>About SquirrelMail <?php echo $version; ?></b></center></td></tr>
38 <tr><td>
39 <br />
40 SquirrelMail is the name of the program that provides access to your email via the web.<br />
41 <br />
42 <strong>If you have questions about or problems with your mailaccount, passwords, abuse etc,
43 please refer to your system administrator or provider <?php
44 if ( $org_name != 'SquirrelMail' ) {
45 echo '(' . $org_name . ')';
46 }
47 ?>.</strong>
48 They can assist you adequately with these issues. The SquirrelMail development team
49 cannot help you with that. The <a href="help.php">help system</a> provides answers
50 to frequently asked questions.<br />
51 <br />
52 SquirrelMail is a feature rich, standards compliant webmail application written in PHP.
53 It was made by a group of volunteers united in the SquirrelMail Development Team and is
54 released as open source, free software under the <a href="http://www.gnu.org/copyleft/gpl.html"
55 target="_blank">GNU General Public License</a>.
56 For more information about SquirrelMail and the SquirrelMail development team, see
57 <a href="http://www.squirrelmail.org/" target="_blank">the SquirrelMail website</a>.<br />
58 <br /><br />
59 <b>System information</b><br/><br/>
60 <small>
61 You are using SquirrelMail version: <?php echo $version; ?><br />
62 The administrator installed the following plugins:<br />
63 <?php
64 if ( count ($plugins) > 0 ) {
65 sort($plugins);
66 echo "<ul>\n";
67 foreach($plugins as $plugin) {
68 echo "<li>" . $plugin . "</li>\n";
69 }
70 echo "</ul>\n\n";
71 } else {
72 echo "<em>none installed</em>\n\n";
73 }
74 ?>
75 </small>
76 <br /><br />
77 </td></tr>
78 <tr><td align="center">&copy; 1999 - 2005 The SquirrelMail Development Team</td></tr>
79 </table></p>
80
81
82
83 </body></html>