doc/plugins.txt. global.php is loaded by validate.php
[squirrelmail.git] / src / about.php
CommitLineData
8b5c49cd 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 */
24define('SM_PATH','../');
25
26/* SquirrelMail required files. */
27require_once(SM_PATH . 'include/validate.php');
8b5c49cd 28
29displayPageHeader($color, 'None' );
30
31?>
32<p align="center">
33<img src="../images/sm_logo.png" width="308" height="111"
34 alt="SquirrelMail Logo" /><br />
35<table align="center" width="80%" cellpadding="1" cellspacing="2" border="0">
36<tr><td bgcolor="#dcdcdc" align="center"><center><b>About SquirrelMail <?php echo $version; ?></b></center></td></tr>
37<tr><td>
38<br />
39SquirrelMail is the name of the program that provides access to your email via the web.<br />
40<br />
800fe5a4 41<strong>If you have questions about or problems with your mail account, passwords, abuse etc,
42please refer to your system administrator or provider<?php
8b5c49cd 43if ( $org_name != 'SquirrelMail' ) {
44 echo '(' . $org_name . ')';
45}
46?>.</strong>
47They can assist you adequately with these issues. The SquirrelMail development team
48cannot help you with that. The <a href="help.php">help system</a> provides answers
49to frequently asked questions.<br />
50<br />
51SquirrelMail is a feature rich, standards compliant webmail application written in PHP.
52It was made by a group of volunteers united in the SquirrelMail Development Team and is
53released as open source, free software under the <a href="http://www.gnu.org/copyleft/gpl.html"
54target="_blank">GNU General Public License</a>.
55For more information about SquirrelMail and the SquirrelMail development team, see
56<a href="http://www.squirrelmail.org/" target="_blank">the SquirrelMail website</a>.<br />
57<br /><br />
58<b>System information</b><br/><br/>
59<small>
60You are using SquirrelMail version: <?php echo $version; ?><br />
61The administrator installed the following plugins:<br />
62<?php
63if ( count ($plugins) > 0 ) {
64 sort($plugins);
65 echo "<ul>\n";
66 foreach($plugins as $plugin) {
67 echo "<li>" . $plugin . "</li>\n";
68 }
69 echo "</ul>\n\n";
70} else {
71 echo "<em>none installed</em>\n\n";
72}
73?>
74</small>
75<br /><br />
76</td></tr>
800fe5a4 77<tr><td align="center">&copy; 1999 - 2005 The SquirrelMail Project Team</td></tr>
8b5c49cd 78</table></p>
8b5c49cd 79</body></html>