~ubuntu-branches/ubuntu/hardy/squirrelmail/hardy-updates

« back to all changes in this revision

Viewing changes to plugins/info/setup.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2005-02-06 21:41:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050206214151-z4n1o8mnttgzuj0y
Tags: 2:1.4.4-3
* Move default_pref config file from /var to /etc, as per Debian policy
  (Closes: #293281)
* [JvW] (finally) override two lintian warnings about nonstandard
  permissions that are intentional (Closes: #293366)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
2
 
3
 
/** setup file for the IMAP server info plugin
4
 
 * Copyright (c) 1999-2003 The SquirrelMail Project Team
 
3
/* setup file for the IMAP server info plugin
 
4
 * Copyright (c) 1999-2005 The SquirrelMail Project Team
5
5
 * Licensed under the GNU GPL. For full terms see the file COPYING.
6
6
 *   
7
7
 * by: Jason Munro jason@stdbev.com
8
8
 * 
9
 
 * $Id: setup.php,v 1.5 2003/10/27 22:24:39 tassium Exp $
10
 
 * @package plugins
11
 
 * @subpackage info
 
9
 * $Id: setup.php,v 1.4.2.3 2004/12/27 15:03:58 kink Exp $
 
10
 * 
12
11
 */
13
12
 
14
 
/** @ignore */
15
13
require_once (SM_PATH . 'plugins/info/functions.php');
16
14
 
17
15
function squirrelmail_plugin_init_info() {
25
23
    $optpage_blocks[] = array(
26
24
        'name' => _("IMAP server information"),
27
25
        'url'  => '../plugins/info/options.php',
28
 
        'desc' => _("Run some test IMAP commands, displaying both the command and the result. These tests use the Squirrelmail IMAP commands and your current Squirrelmail configuration. Custom command strings can be used."),
 
26
        'desc' => _("Run some test IMAP commands, displaying both the command and the result. These tests use the SquirrelMail IMAP commands and your current SquirrelMail configuration. Custom command strings can be used."),
29
27
        'js'   => false
30
28
    );
31
29
}