1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?PHP
- /* functions for info plugin
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * Here are two functions for the info plugin
- * The first gets the CAPABILITY response from your IMAP server.
- * The second runs the passed IMAP test and returns the results
- * The third prints the results of the IMAP command
- * to options.php.
- * by: Jason Munro jason@stdbev.com
- */
- 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;
- }
- 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 "<TR><TD>".$query."</TD></TR>";
- fputs ($imap_stream, $query);
- $response = sqimap_read_data_list($imap_stream, $sid, false, $responses, $message);
- array_push($response, $message);
- return $response;
- }
- function print_response($response) {
- foreach($response as $index=>$value) {
- if (is_array($value)) {
- print_response($value);
- }
- else {
- $value = preg_replace("/</", "<", $value);
- $value = preg_replace("/>/", ">", $value);
- print $value."<BR>\n";
- }
- }
- }
-
- ?>
|