X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Finfo%2Foptions.php;h=79fa0d18ef8a8e9e9cdcb6112efd57407ba2943d;hp=90f34522fcef7e51f564c8700bbbd6d0f7218471;hb=8ab3c1bd38409d09e1c336107ebee474b5a7dd39;hpb=82d304a0501324b276cabab1870755d5352bd21c diff --git a/plugins/info/options.php b/plugins/info/options.php index 90f34522..79fa0d18 100644 --- a/plugins/info/options.php +++ b/plugins/info/options.php @@ -1,27 +1,27 @@ - + * @copyright © 1999-2007 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ * @package plugins * @subpackage info */ -/** @ignore */ -define('SM_PATH','../../'); +/** + * Path for SquirrelMail required files. + * @ignore + */ +require('../../include/init.php'); /* SquirrelMail required files. */ -require_once(SM_PATH . 'include/validate.php'); -require_once(SM_PATH . 'functions/page_header.php'); -require_once(SM_PATH . 'functions/imap.php'); +require_once(SM_PATH . 'functions/imap_general.php'); +require_once(SM_PATH . 'functions/forms.php'); require_once(SM_PATH . 'plugins/info/functions.php'); global $username, $color, $folder_prefix, $default_charset; @@ -29,11 +29,19 @@ $default_charset = strtoupper($default_charset); displayPageHeader($color, 'None'); $mailbox = 'INBOX'; -/* GLOBALS */ -sqgetGlobalVar('username', $username, SQ_SESSION); -sqgetGlobalVar('key', $key, SQ_COOKIE); -sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION); +/** + * testing installation + * + * prevent use of plugin if it is not enabled + */ +if (! is_plugin_enabled('info')) { + error_box(_("Plugin is disabled.")); + // display footer (closes html) and stop script execution + $oTemplate->display('footer.tpl'); + exit; +} +/* GLOBALS */ sqgetGlobalVar('submit', $submit, SQ_POST); for($i = 0; $i <= 9; $i++){ @@ -45,10 +53,9 @@ for($i = 0; $i <= 9; $i++){ /* END GLOBALS */ -$imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); +$imap_stream = sqimap_login($username, false, $imapServerAddress, $imapPort, 0); $caps_array = get_caps($imap_stream); -$list = array ( - 'TEST_0', +$list = array ('TEST_0', 'TEST_1', 'TEST_2', 'TEST_3', @@ -59,29 +66,37 @@ $list = array ( 'TEST_8', 'TEST_9'); -print "
IMAP server information

\n"; -print "

\n"; -print "
\n"; -print "\n"; + + if (function_exists('microtime')) { + // get script execution time + list($usec, $sec) = explode(" ", microtime()); + $endtime = (float)$sec + (float)$usec; + // i18n: ms = short for miliseconds + echo '\n". + '\n"; + } + + echo "
Server Capability response:
\n"; +echo '
'._("IMAP server information")."

\n". + ''. + '

\n". + '\n". + '
'. + _("Server Capability response:"). + "
\n"; foreach($caps_array[0] as $value) { - print $value; + echo htmlspecialchars($value); } -print "
\n"; +echo "
\n"; if (!isset($submit) || $submit == 'default') { - print "
Select the IMAP commands you would like to run. Most commands require a selected mailbox so the select command is already setup. You can clear all the commands and test your own IMAP command strings. The commands are executed in order. The default values are simple IMAP commands using your default_charset and folder_prefix from Squirrelmail when needed.

NOTE: These commands are live, any changes made will effect your current email account.

\n"; + echo '

'. + _("Select the IMAP commands you would like to run. Most commands require a selected mailbox so the select command is already setup. You can clear all the commands and test your own IMAP command strings. The commands are executed in order. The default values are simple IMAP commands using your default_charset and folder_prefix from SquirrelMail when needed."). + "

\n". + '

'. + _("NOTE: These commands are live, any changes made will effect your current email account."). + "


\n"; if (!isset($submit)) { $submit = ''; } } else { - print "folder_prefix = $folder_prefix
\n"; - print "default_charset = $default_charset\n"; + echo 'folder_prefix = ' . htmlspecialchars($folder_prefix)."
\n" . + 'default_charset = '.htmlspecialchars($default_charset)."\n"; } -print "

\n"; +echo "

\n"; if ($submit == 'submit') { @@ -107,32 +122,36 @@ elseif (!$submit || $submit == 'default') { 'TEST_5' => "SORT (DATE) $default_charset ALL", 'TEST_6' => "FETCH 1:* (FLAGS BODY[HEADER.FIELDS (FROM DATE TO)])", 'TEST_7' => "LSUB \"$folder_prefix\" \"*%\"", - 'TEST_8' => "LIST \"$folder_prefix*\" \"*\"", + 'TEST_8' => "LIST \"$folder_prefix\" \"*\"", 'TEST_9' => ""); } -print "
\n"; -print "
\n"; -print "\n"; -print "
SelectTest NameIMAP command string
\n"; +echo "\n". + "\n". + '\n". + '\n
'. _("Select"). + ''._("Test Name"). + ''._("IMAP command string")."
'; foreach($type as $index=>$value) { - print "
\n$index\n"; - print "\n"; + echo " />$index\n". + addInput($index, $value, 60); } -print "

\n"; -print "
\n"; -print "\n"; -print "

\n"; +echo "

\n". + '
'. + addSubmit('submit','submit'). + addSubmit('clear','submit',array('id'=>'clear')). + addSubmit('default','submit',array('id'=>'default')). + "

\n"; $tests = array(); @@ -141,23 +160,49 @@ if ($submit == 'submit') { $check = "CHECK_".$index; if (isset($$check)) { $type[$index] = $$index; - array_push($tests, $index); + array_push($tests, $index); } } for ($i=0;$i\n"; - print ""; - print "\n"; + // make sure that microtime function is available before it is called + if (function_exists('microtime')) { + list($usec, $sec) = explode(" ", microtime()); + $starttime = (float)$sec + (float)$usec; + } + + echo '
".$tests[$i]."
Request:
\n". + '\n". + '\n"; + // imap_test function outputs imap command $response = imap_test($imap_stream, $type[$tests[$i]]); - print "\n"; - print "\n". + '
'.$tests[$i]."
'. + _("Request:")."
Response:
"; + echo '
'. + _("Response:")."
'; print_response($response); - print "

\n"; + echo "
'. + _("Execution time:")."
'.sprintf(_("%s ms"),round((($endtime - $starttime)*1000),3))."

\n"; } } - print "
"; - sqimap_logout($imap_stream); - do_hook('info_bottom'); +echo ''; +sqimap_logout($imap_stream); + +/** + * Optional hook in info plugin + * + * Hook allows attaching plugin to bottom of info plugin + */ +do_hook('info_bottom', $null); ?> +