uawdijnntqw1x1x1
IP : 216.73.216.155
Hostname : vm5018.vps.agava.net
Kernel : Linux vm5018.vps.agava.net 3.10.0-1127.8.2.vz7.151.14 #1 SMP Tue Jun 9 12:58:54 MSK 2020 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
..
/
usr
/
share
/
squirrelmail
/
plugins
/
info
/
functions.php
/
/
<?php /* functions for info plugin * Copyright (c) 1999-2010 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 * * $Id: functions.php 13893 2010-01-25 02:47:41Z pdontthink $ * */ 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>".htmlspecialchars($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 { print htmlspecialchars($value)."<br>\n"; } } } /** * Check if plugin is enabled * @param string $plugin_name plugin name * @return boolean */ function info_is_plugin_enabled($plugin_name) { global $plugins; if (empty($plugins) || ! is_array($plugins)) return false; if ( in_array($plugin_name,$plugins) ) { return true; } else { return false; } }
/var/../usr/share/squirrelmail/plugins/info/functions.php