Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
webuzo-data /
roundcube /
program /
include /
Delete
Unzip
Name
Size
Permission
Date
Action
clisetup.php
1.37
KB
-rw-r--r--
2026-02-08 09:33
iniset.php
4.49
KB
-rw-r--r--
2026-02-08 09:33
rcmail.php
67.17
KB
-rw-r--r--
2026-02-08 09:33
rcmail_action.php
51.06
KB
-rw-r--r--
2026-02-08 09:33
rcmail_attachment_handler.php
12.67
KB
-rw-r--r--
2026-02-08 09:33
rcmail_html_page.php
3.3
KB
-rw-r--r--
2026-02-08 09:33
rcmail_install.php
30.92
KB
-rw-r--r--
2026-02-08 09:33
rcmail_oauth.php
23.62
KB
-rw-r--r--
2026-02-08 09:33
rcmail_output.php
4.33
KB
-rw-r--r--
2026-02-08 09:33
rcmail_output_cli.php
2.18
KB
-rw-r--r--
2026-02-08 09:33
rcmail_output_html.php
97.67
KB
-rw-r--r--
2026-02-08 09:33
rcmail_output_json.php
8.01
KB
-rw-r--r--
2026-02-08 09:33
rcmail_resend_mail.php
6.07
KB
-rw-r--r--
2026-02-08 09:33
rcmail_sendmail.php
62.46
KB
-rw-r--r--
2026-02-08 09:33
rcmail_string_replacer.php
2.38
KB
-rw-r--r--
2026-02-08 09:33
rcmail_utils.php
11.48
KB
-rw-r--r--
2026-02-08 09:33
Save
Rename
<?php /** +-----------------------------------------------------------------------+ | This file is part of the Roundcube Webmail client | | | | Copyright (C) The Roundcube Dev Team | | | | Licensed under the GNU General Public License version 3 or | | any later version with exceptions for skins & plugins. | | See the README file for a full license statement. | | | | CONTENTS: | | Abstract class for output generation | +-----------------------------------------------------------------------+ | Author: Thomas Bruederli <roundcube@gmail.com> | +-----------------------------------------------------------------------+ */ /** * Class for output generation * * @package Webmail * @subpackage View */ class rcmail_output_cli extends rcmail_output { public $type = 'cli'; /** * Call a client method * * @see rcube_output::command() */ function command($cmd, ...$args) { // NOP } /** * Add a localized label to the client environment * * @see rcube_output::add_label() */ function add_label(...$args) { // NOP } /** * Invoke display_message command * * @see rcube_output::show_message() */ function show_message($message, $type = 'notice', $vars = null, $override = true, $timeout = 0) { if ($this->app->text_exists($message)) { $message = $this->app->gettext(['name' => $message, 'vars' => $vars]); } printf("[%s] %s\n", strtoupper($type), $message); } /** * Redirect to a certain url. * * @see rcube_output::redirect() */ function redirect($p = [], $delay = 1) { // NOP } /** * Send output to the client. */ function send() { // NOP } }