X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Finfo%2Ffunctions.php;h=36bff635d67d386368d1e2987b4f2404dedef69f;hp=92f666dcc69f8b36e7d5c8bfda429e2296620503;hb=47ccfad452e8d345542d09e59112cac317cffed8;hpb=a7b90f05ac8a08954d355b96ab133ddaa2690221 diff --git a/plugins/info/functions.php b/plugins/info/functions.php index 92f666dc..36bff635 100644 --- a/plugins/info/functions.php +++ b/plugins/info/functions.php @@ -1,50 +1,63 @@ - + * @copyright © 1999-2006 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package plugins + * @subpackage info */ +/** + * Get the IMAP capabilities + * + * @param mixed $imap_stream + * @return array + * @access private + */ function get_caps($imap_stream) { - $sid = sqimap_session_id(); - $query = "$sid CAPABILITY\r\n"; - fputs ($imap_stream, $query); - $responses = sqimap_read_data_list($imap_stream, $sid, true, $responses, $message); - return $responses; + return sqimap_run_command_list($imap_stream, 'CAPABILITY',false, $responses, $message,false); } +/** + * Run an IMAP test and return the results + * + * @param mixed $imap_stream + * @param string $string imap command + * @return array Response from the IMAP server + * @access private + */ function imap_test($imap_stream, $string) { - global $default_charset; - $message = ''; - $responses = array (); - $sid = sqimap_session_id(); - $results = array(); - $query = "$sid ".trim($string)."\r\n"; - print "".$query.""; - fputs ($imap_stream, $query); - $response = sqimap_read_data_list($imap_stream, $sid, false, $responses, $message); - array_push($response, $message); + print "".htmlspecialchars($string).""; + $response = sqimap_run_command_list($imap_stream, trim($string),false, $responses, $message,false); + array_push($response, $responses . ' ' .$message); return $response; } +/** + * Print the IMAP response to options.php + * + * @param array $response results of imap command + * @access private + */ function print_response($response) { foreach($response as $index=>$value) { if (is_array($value)) { print_response($value); } else { - $value = preg_replace("//", ">", $value); - print $value."
\n"; + print htmlspecialchars($value)."
\n"; } } } - -?> + +?> \ No newline at end of file