doc/plugins.txt. global.php is loaded by validate.php
[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
29 displayPageHeader($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 />
39 SquirrelMail is the name of the program that provides access to your email via the web.<br />
40 <br />
41 <strong>If you have questions about or problems with your mail account, passwords, abuse etc,
42 please refer to your system administrator or provider<?php
43 if ( $org_name != 'SquirrelMail' ) {
44 echo '(' . $org_name . ')';
45 }
46 ?>.</strong>
47 They can assist you adequately with these issues. The SquirrelMail development team
48 cannot help you with that. The <a href="help.php">help system</a> provides answers
49 to frequently asked questions.<br />
50 <br />
51 SquirrelMail is a feature rich, standards compliant webmail application written in PHP.
52 It was made by a group of volunteers united in the SquirrelMail Development Team and is
53 released as open source, free software under the <a href="http://www.gnu.org/copyleft/gpl.html"
54 target="_blank">GNU General Public License</a>.
55 For 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>
60 You are using SquirrelMail version: <?php echo $version; ?><br />
61 The administrator installed the following plugins:<br />
62 <?php
63 if ( 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>
77 <tr><td align="center">&copy; 1999 - 2005 The SquirrelMail Project Team</td></tr>
78 </table></p>
79 </body></html>