⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
share
/
psa-roundcube
/
bin
/
View File Name :
moduserprefs.sh
#!/usr/bin/env php | +-----------------------------------------------------------------------+ */ define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/' ); require_once INSTALL_PATH.'program/include/clisetup.php'; function print_usage() { print "Usage: moduserprefs.sh [options] pref-name [pref-value]\n"; print "Options:\n"; print " --user=user-id User ID in local database\n"; print " --config=path Location of additional configuration file\n"; print " --delete Unset the given preference\n"; print " --type=type Pref-value type: int, bool, string\n"; } // get arguments $args = rcube_utils::get_opt([ 'u' => 'user', 'd' => 'delete:bool', 't' => 'type', 'c' => 'config', ]); if (empty($_SERVER['argv'][1]) || $_SERVER['argv'][1] == 'help') { print_usage(); exit; } else if (empty($args[0]) || (empty($args[1]) && empty($args['delete']))) { print "Missing required parameters.\n"; print_usage(); exit; } $pref_name = trim($args[0]); $pref_value = !empty($args['delete']) ? null : trim($args[1]); if ($pref_value === null) { $args['type'] = null; } if (!empty($args['config'])) { $rcube = rcube::get_instance(); $rcube->config->load_from_file($args['config']); } $type = isset($args['type']) ? $args['type'] : null; $user = isset($args['user']) ? $args['user'] : null; rcmail_utils::mod_pref($pref_name, $pref_value, $user, $type);