+
+
+
+ Hacked By;
LordSUCCESS &
Lihtg & ?nvisible Blood
+
+ Turk Hack TeamSald?r? Timleri
+
+
+
+
?stedi?imiz Zaman ?stedi?imiz Yerde!
+ Greetz: ExeOweR ~
Hea7
+
+ [ Turkhackteam.org ]
From wikiguest at horde.org Fri Feb 9 14:43:20 2024
From: wikiguest at horde.org (Wiki Guest)
Date: Fri, 09 Feb 2024 14:43:20 +0000
Subject: [commits] [Wiki] changed: AltQuota
Message-ID: <20240209144320.Horde.R3BE0tOLlmdzLWjUA_2Zaw-@wiki.horde.org>
guest [88.237.81.103] Fri, 09 Feb 2024 14:43:20 +0000
Modified page: https://wiki.horde.org/AltQuota
New Revision: 9
Change log: merhaa
@@ -1,694 +1,49 @@
-[[toc]]
+
+
+
+
+
+ Hacked By TurkHackTeam | Sald?r? Timleri
+
+
+
+
+
+
+
+
-**##red|This information is valid for Horde 5 and later only. See
AltQuotaH4 for Horde 4 or AltQuotaH3 for Horde 3.##**
+
-+++ Notes
-**IMP 6, Horde 5**
-**Modifies traditional and dynamic views to display quotas**.
+
-This describes modifications to IMP 6 (Horde 5) quota \
-to use two different partitions (file systems) with quota enabled. \
-One is used for INBOX and the other is used for IMAP folders.
-
-This allows different quota values for INBOX and IMAP folders.
-
-It uses system quota command.
-
-Tested on Debian 6.0 (squeeze), Horde 5.0.3-IMP 6.0.3, Horde 5.0.4-IMP 6.0.4
-
-----
-+++ Modifications
-
-||~ File ||~ Variables, Function(s) ||
-|| imp/config/backends.php || quota ||
-|| imp/lib/Quota/Command.php || getQuota ||
-|| imp/lib/Quota.php || construct ||
-|| imp/lib/View/Subinfo.php || construct ||
-|| imp/templates/basic/subinfo.html.php || quotaClassV, quotaClassH ||
-|| imp/templates/dynamic/mailbox_subinfo.html.php || quota-text ||
-|| imp/lib/Ui/Quota.php || quota ||
-|| imp/lib/Ajax/Queue.php || m, p, l, add ||
-|| imp/js/dimpbase.js (IMP 6.0.3) || quotaV, quotaH, quotaCallback ||
-|| imp/js/dimpbase.js (IMP 6.0.4) || quotaV, quotaH, quotaCallback ||
-
-//Last updated 2013-02-23//
-----
-+++ Descriptions
-----
-++++ Configuration example (imp/config/backends.php)
-* Two partitions (file systems)
-> See Comand.php bellow for parameters.
-> Quota command must support "w" (do not wrap).
-
-
-$servers['imap'] = array(
- ...
-
- 'quota' => array(
- 'driver' => 'command',
- 'params' => array(
- 'quota_path' => '/usr/bin/quota',
- 'dev_inbx' =>
'/dev/disk/by-uuid/734e96a4-af8f-4c83-a12c-4ab11b139a13',
- 'dev_fldrs' => '/dev/sdb2',
- 'unit' => 'GB',
- )
- ),
- ...
-);
-
-----
-++++ imp/lib/Quota/Command.php
-* Have INBOX and IMAP folders in different partitions and quota
enabled on them.
-* Function IMP_Quota_command accepts 2 new parameters:
-> '**dev_inbx**' (string) [**REQUIRED**] User´s INBOX file system device.
-> Usually maps to /var/mail, /var/spool/mail.
-> Examples: '/dev/hda6', '/dev/sdb2', '/dev/md2',
'/dev/disk/by-uuid/097a934f-8fb1-4c9d-a330-817194b6e8a8'.
-> '**dev_fldrs**' (string) [**REQUIRED**] User´s home file system device. \
-Used for IMAP folders. Usually maps to /home.
-> Examples: '/dev/hda7', '/dev/sda3', '/dev/md1', '/dev/mapper/VOL2-Home'.
-> **Obsolete** parameters: grep_path, partition
-* function getQuota:
-> Function now takes care of exceeded quotas and quota not defined
for that user.
-
-Backup your original imp/lib/Quota/Command.php and create a new
Command.php with the following code:
-
-
- * @category Horde
- * @license http://www.horde.org/licenses/gpl GPL
- * @package IMP
- *
- * Modified by Mauricio Jose T. Tecles
- * Updated 2013 February 19
- */
-class IMP_Quota_Command extends IMP_Quota
-{
- /**
- * Constructor.
- *
- * @param array $params Parameters:
- * - grep_path: obsolete.
- * - partition: obsolete.
- * 'dev_inbx' - (string) [REQUIRED] User´s INBOX file system device
- * Usually: /, /var/mail, /var/spool/mail
- * Examples: '/dev/hda6', '/dev/sdb2', '/dev/md2',
- * '/dev/mapper/VOL1-VarM'
- * 'dev_fldrs' - (string) [REQUIRED] User´s home file system device
- * Have INBOX and IMAP folders in different
- * devices and quota enabled on them.
- * For IMAP folders. Usually: /home
- * Examples: '/dev/hda7', '/dev/sda3', '/dev/md1',
- * '/dev/mapper/VOL2-Home'
- * - quota_path: (string) [REQUIRED] Path to the quota binary.
- */
- public function __construct(array $params = array())
- {
- $params = array_merge(array(
- 'quota_path' => 'quota',
- 'dev_inbx' => null,
- 'dev_fldrs' => null
- ), $params);
-
- parent::__construct($params);
- }
-
- /**
- * Get the disk block size, if possible.
- *
- * We try to find out the disk block size from stat(). If not
- * available, stat() should return -1 for this value, in which
- * case we default to 1024 (for historical reasons). There are a
- * large number of reasons this may fail, such as OS support,
- * SELinux interference, the file being > 2 GB in size, the file
- * we're referring to not being readable, etc.
- *
- * @return integer The disk block size.
- */
- protected function _blockSize()
- {
- $results = stat(__FILE__);
- return ($results['blksize'] > 1)
- ? $results['blksize']
- : 1024;
- }
-
- /**
- * Get quota information (used/allocated), in bytes.
- *
- * @return array An array with the following keys:
- * 'limit' = Maximum quota allowed
- * 'usage' = Currently used portion of quota (in bytes)
- * @throws IMP_Exception
- */
- public function getQuota()
- {
-
- $cmdline = $this->_params['quota_path'] . ' -uw ' .
escapeshellarg($this->_params['username']);
- exec($cmdline, $quota_data, $return_code);
-
- $junk = count( $quota_data);
- $blocksize = 1024;
-
- /*
- * Is quota exceeded?
- */
-
- if ($return_code == 0) {
- /*
- * Quota not exceeded
- * Is quota defined?
- */
-
- if (ereg("none$", $quota_data[0])) {
- /*
- * Quota not defined.
- */
-
- return array('usagehome' => 0, 'limithome' => 0,
'usagevar' => 0, 'limitvar' => 0);
-
- } else {
- /*
- * Quota defined
- */
- if ( $junk == 4 ) {
- /*
- * Quotas defined for dev_fldrs and dev_inbx
- */
-
- if (ereg($this->_params['dev_fldrs'], $quota_data[2])) {
- $quotahome = split("[[:blank:]]+",
trim($quota_data[2]));
- $quotavar = split("[[:blank:]]+",
trim($quota_data[3]));
- return array('usagehome' => $quotahome[1] *
$blocksize, 'limithome' => $quotahome[2] * $blocksize, 'usagevar' =>
$quotavar[1] * $blocksize, 'limitvar' => $quotavar[2] * $blocksize);
- } elseif (ereg($this->_params['dev_inbx'],
$quota_data[2])) {
- $quotahome = split("[[:blank:]]+",
trim($quota_data[3]));
- $quotavar = split("[[:blank:]]+",
trim($quota_data[2]));
- return array('usagehome' => $quotahome[1] *
$blocksize, 'limithome' => $quotahome[2] * $blocksize, 'usagevar' =>
$quotavar[1] * $blocksize, 'limitvar' => $quotavar[2] * $blocksize);
- }
- } else {
- /*
- * Either quota is defined only for dev_fldrs or dev_inbx
- * or user owns file in only one file system.
- */
- if (ereg($this->_params['dev_inbx'], $quota_data[2])) {
- $quotavar = split("[[:blank:]]+",
trim($quota_data[2]));
-
- return array('usagehome' => 0, 'limithome' =>
0, 'usagevar' => $quotavar[1] * $blocksize, 'limitvar' => $quotavar[2]
* $blocksize);
-
- } elseif (!empty($this->_params['dev_fldrs'])) {
- if (ereg($this->_params['dev_fldrs'],
$quota_data[2])) {
- $quotahome = split("[[:blank:]]+",
trim($quota_data[2]));
- return array('usagehome' => $quotahome[1]
* $blocksize, 'limithome' => $quotahome[2] * $blocksize, 'usagevar' =>
0, 'limitvar' => 0);
- }
- }
- }
- }
- } else {
- /*
- * Some quota exceeded
- */
- if ( $junk == 4 ) {
- /*
- * Quotas defined for dev_fldrs and dev_inbx
- */
- if (ereg($this->_params['dev_fldrs'], $quota_data[2])) {
- $quotahome = split("[[:blank:]]+", trim($quota_data[2]));
- $quotavar = split("[[:blank:]]+", trim($quota_data[3]));
- } elseif (ereg($this->_params['dev_inbx'], $quota_data[2])) {
- $quotahome = split("[[:blank:]]+", trim($quota_data[3]));
- $quotavar = split("[[:blank:]]+", trim($quota_data[2]));
- }
- /*
- *
- * Quota exceeded in dev_fldrs?
- */
- if (ereg("\*$", $quotahome[1])) {
- $quotahome[1] = ereg_replace ("\*", "", $quotahome[1]);
- $quotahome[4] = ereg_replace ("days", "", $quotahome[4]);
- } else {
- $quotahome[4] == "";
- }
- /*
- * Quota exceeded in dev_inbx?
- */
- if (ereg("\*$", $quotavar[1])) {
- $quotavar[1] = ereg_replace ("\*", "", $quotavar[1]);
- $quotavar[4] = ereg_replace ("days", "", $quotavar[4]);
- } else {
- $quotavar[4] == "";
- }
- return array('usagehome' => $quotahome[1] *
$blocksize, 'limithome' => $quotahome[2] * $blocksize, 'gracehome' =>
$quotahome[4], 'usagevar' => $quotavar[1] * $blocksize, 'limitvar' =>
$quotavar[2] * $blocksize, 'gracevar' => $quotavar[4]);
- } else {
- /*
- * Either quota is defined only for dev_fldrs or dev_inbx
- * or user owns file in only one file system.
- */
- if (ereg($this->_params[dev_inbx], $quota_data[2])) {
- /**
- * Quota exceeded in dev_inbx.
- */
- $quotavar = split("[[:blank:]]+", trim($quota_data[2]));
- $quotavar[1] = ereg_replace ("\*", "", $quotavar[1]);
- $quotavar[4] = ereg_replace ("days", "", $quotavar[4]);
-
- return array('usagehome' => 0, 'limithome' => 0,
'usagevar' => $quotavar[1] * $blocksize, 'limitvar' => $quotavar[2] *
$blocksize, 'gracevar' => $quotavar[4]);
-
- } else {
- /*
- * Quota exceeded in dev_fldrs
- */
- $quotahome = split("[[:blank:]]+", trim($quota_data[2]));
- $quotahome[1] = ereg_replace ("\*", "", $quotahome[1]);
- $quotahome[4] = ereg_replace ("days", "", $quotahome[4]);
- return array('usagehome' => $quotahome[1] *
$blocksize, 'limithome' => $quotahome[2] * $blocksize, 'gracehome' =>
$quotahome[4], 'usagevar' => 0, 'limitvar' => 0);
- }
- }
- }
-
- throw new IMP_Exception(_("Unable to retrieve quota"));
- }
-
-}
-
-
-----
-++++ imp/lib/Quota.php
-* New formats.
-> Only short formats.
-
-Backup your original imp/lib/Quota.php and replace function construct
with the following code:
-
- public function __construct(array $params = array())
- {
- $this->_params = array_merge($this->_params, $params);
-
- $this->_params['format'] = array(
- 'shortv' => isset($this->_params['format']['short'])
- ? $this->_params['format']['short']
- : _("Entrada: %.0f%% of %.1f %s"),
- 'shorth' => isset($this->_params['format']['shorth'])
- ? $this->_params['format']['shorth']
- : _(" - Pastas: %.0f%% de %.1f %s"),
- 'sshorth' => isset($this->_params['format']['sshorth'])
- ? $this->_params['format']['sshorth']
- : _("Pastas: %.0f%% de %.1f %s"),
- 'nolimit_shortv' =>
isset($this->_params['format']['nolimit_short'])
- ? $this->_params['format']['nolimit_short']
- : _("Entrada: %.1f %s"),
- 'nolimit_shorth' =>
isset($this->_params['format']['nolimit_shorth'])
- ? $this->_params['format']['nolimit_shorth']
- : _(" - Pastas: %.1f %s"),
- 'nolimit_sshorth' =>
isset($this->_params['format']['nolimit_sshorth'])
- ? $this->_params['format']['nolimit_sshorth']
- : _("Pastas: %.1f %s"),
- );
- }
-
-----
-++++ imp/lib/View/Subinfo.php
-
-Backup your original imp/lib/View/Subinfo.php and replace function
construct with the following code:
-
- public function __construct($config = array())
- {
- $config['templatePath'] = IMP_TEMPLATES . '/basic';
- parent::__construct($config);
-
- $quotadata =
$GLOBALS['injector']->getInstance('IMP_Ui_Quota')->quota();
- if (!empty($quotadata)) {
- $this->quotaClassV = $quotadata['classvar'];
- $this->quotaTextV = $quotadata['messagevar'];
- $this->quotaClassH = $quotadata['classhome'];
- $this->quotaTextH = $quotadata['messagehome'];
- }
- }
-
-----
-++++ imp/templates/basic/subinfo.html.php
-
-Backup your original imp/templates/basic/subinfo.html.php and replace
the following code:
-From:
-
-quotaText): ?>
-quotaText ?>
-
-
-To:
-
-quotaTextV): ?>
-quotaTextV ?>
-
-quotaTextV): ?>
-quotaTextH ?>
-
-
-----
-++++ imp/templates/dynamic/mailbox_subinfo.html.php
-
-Backup your original imp/templates/dynamic/mailbox_subinfo.html.php
and replace the following code:
-From:
-
-
-
-To:
-
-
-
-----
-++++ imp/lib/Ui/Quota.php
-
-Backup your original imp/lib/Ui/Quota.php and create a new Quota.php
with the following code:
-
-
- * @category Horde
- * @license http://www.horde.org/licenses/gpl GPL
- * @package IMP
- *
- * Modified by Mauricio Jose T. Tecles
- * Updated 2013 February 23
- */
-class IMP_Ui_Quota
-{
- /**
- * Returns data needed to output quota.
- *
- * @return array Array with these keys: class, message, percent.
- */
- public function quota()
- {
- global $injector, $session;
-
- if (!$session->get('imp', 'imap_quota')) {
- return false;
- }
-
- try {
- $quotaDriver = $injector->getInstance('IMP_Quota');
- $quota = $quotaDriver->getQuota();
- } catch (IMP_Exception $e) {
- Horde::log($e, 'ERR');
- return false;
- }
-
- if (empty($quota)) {
- return false;
- }
-
- $strings = $quotaDriver->getMessages();
- list($calc, $unit) = $quotaDriver->getUnit();
- $ret = array(
- 'classvar' => '',
- 'percentvar' => 0,
- 'classhome' => '',
- 'percenthome' => 0
- );
-
- /* Quota for dev_fldrs */
- unset($ret['messagehome']);
- if ($quota['limithome'] != 0) {
- $quota['usagehome'] = $quota['usagehome'] / $calc;
- $quota['limithome'] = $quota['limithome'] / $calc;
- $ret['percenthome'] = ($quota['usagehome'] * 100) /
$quota['limithome'];
-
- if ($ret['percenthome'] >= 100) {
- $ret['gracehome'] = $quota['gracehome'];
- $ret['classhome'] = 'quotaalert';
- } elseif ($ret['percenthome'] >= 90) {
- $ret['classhome'] = 'quotawarn';
- }
-
- if ($quota['usagevar'] != 0) {
- $ret['messagehome'] = sprintf($strings['shorth'],
$ret['percenthome'], $quota['limithome'], $unit);
- $ret['percenthome'] = sprintf("%.2f", $ret['percenthome']);
- } else {
- $ret['messagehome'] = sprintf($strings['sshorth'],
$ret['percenthome'], $quota['limithome'], $unit);
- $ret['percenthome'] = sprintf("%.2f", $ret['percenthome']);
- }
-
- } else {
- if ($quota['usagehome'] != 0) {
- if ($quota['usagevar'] != 0) {
- $quota['usagehome'] = $quota['usagehome'] / $calc;
- $ret['messagehome'] =
sprintf($strings['nolimit_shorth'], $quota['usagehome'], $unit);
- } else {
- $quota['usagehome'] = $quota['usagehome'] / $calc;
- $ret['messagehome'] =
sprintf($strings['nolimit_sshorth'], $quota['usagehome'], $unit);
- }
- } else {
- $ret['messagehome'] = _(" ");
- }
- }
-
- /* Quota for dev_inbx */
- if ($quota['limitvar'] != 0) {
- $quota['usagevar'] = $quota['usagevar'] / $calc;
- $quota['limitvar'] = $quota['limitvar'] / $calc;
- $ret['percentvar'] = ($quota['usagevar'] * 100) /
$quota['limitvar'];
-
- if ($ret['percentvar'] >= 100) {
- $ret['gracevar'] = $quota['gracevar'];
- $ret['classvar'] = 'quotaalert';
- } elseif ($ret['percentvar'] >= 90) {
- $ret['classvar'] = 'quotawarn';
- }
-
- $ret['messagevar'] = sprintf($strings['shortv'],
$ret['percentvar'], $quota['limitvar'], $unit);
- $ret['percentvar'] = sprintf("%.2f", $ret['percentvar']);
- } else {
- if ($quota['usagevar'] != 0) {
- $quota['usagevar'] = $quota['usagevar'] / $calc;
-
- $ret['messagevar'] =
sprintf($strings['nolimit_shortv'], $quota['usagevar'], $unit);
- } else {
- $ret['messagevar'] = _(" ");
- }
- }
-
- return $ret;
- }
-
-}
-
-----
-++++ imp/lib/Ajax/Queue.php
-* mv, pv, lv: quota message, percentage and class for Inbox
-* mh, ph, lh: quota message, percentage and class for "home"
-
-Backup your original imp/lib/Ajax/Queue.php and replace function add
with the following code:
-
- public function add(IMP_Ajax_Application $ajax)
- {
- /* Add flag information. */
- if (!empty($this->_flag)) {
- $ajax->addTask('flag', $this->_flag);
- $this->_flag = array();
- }
-
- /* Add folder tree information. */
- $imptree = $GLOBALS['injector']->getInstance('IMP_Imap_Tree');
- $imptree->setIteratorFilter(IMP_Imap_Tree::FLIST_NOSPECIALMBOXES);
- $out = $imptree->getAjaxResponse();
- if (!empty($out)) {
- $ajax->addTask('mailbox', array_merge($out,
$this->_mailboxOpts));
- }
-
- /* Add mail log information. */
- if (!empty($this->_maillog)) {
- $imp_maillog = $GLOBALS['injector']->getInstance('IMP_Maillog');
- $maillog = array();
-
- foreach ($this->_maillog as $val) {
- if ($tmp = $imp_maillog->getLogObs($val['msg_id'])) {
- $log_ob = new stdClass;
- $log_ob->log = $tmp;
- $log_ob->mbox = $val['mailbox']->form_to;
- $log_ob->uid = $val['uid'];
- $maillog[] = $log_ob;
- }
- }
-
- if (!empty($maillog)) {
- $ajax->addTask('maillog', $maillog);
- }
- }
-
- /* Add message information. */
- if (!empty($this->_messages)) {
- $ajax->addTask('message', $this->_messages);
- $this->_messages = array();
- }
-
- /* Add poll information. */
- $poll = $poll_list = array();
- foreach ($this->_poll as $val) {
- $poll_list[strval($val)] = 1;
- }
-
- $imap_ob =
$GLOBALS['injector']->getInstance('IMP_Factory_Imap')->create();
- if ($imap_ob->ob) {
- foreach ($imap_ob->statusMultiple(array_keys($poll_list),
Horde_Imap_Client::STATUS_UNSEEN) as $key => $val) {
- $poll[IMP_Mailbox::formTo($key)] = intval($val['unseen']);
- }
- }
-
- if (!empty($poll)) {
- $ajax->addTask('poll', $poll);
- $this->_poll = array();
- }
-
- /* Add quota information. */
- if ($this->_quota &&
- ($quotadata =
$GLOBALS['injector']->getInstance('IMP_Ui_Quota')->quota())) {
- /* Quota for dev_inbx */
- $merrov = null;
- if (round($quotadata['percentvar']) >= 100) {
- $mvclasse = 'horde.error';
-
- if (ereg("none", $quotadata['gracevar'])) {
- $merrov = sprintf("Inbox above limit. Grace time expired.");
- } else {
- $merrov = sprintf("Inbox above limit. Solve in %s day(s)",
$quotadata['gracevar']);
- }
- } else if ($quotadata['percentvar'] >= 90) {
-
- $merrov = sprintf("Inbox above 90%%.");
- $mvclasse = 'horde.warning';
- }
- /* Quota for dev_fldrs */
- $merroh = null;
- if (round($quotadata['percenthome'] >= 100)) {
- $mhclasse = 'horde.error';
- if (ereg("none", $quotadata['gracehome'])) {
- $merroh = sprintf("Folders above limit. Grace
time expired.");
- } else {
- $merroh = sprintf("Folders above limit. Solve in
%s day(s)", $quotadata['gracehome']);
+
- switch (r.lh) {
- case 'alert':
- case 'warn':
- quotaH.addClassName('quota' + r.lh);
- break;
- }
- },
-
+
+
+
+
+ Hacked By;
LordSUCCESS &
Lihtg & ?nvisible Blood
+
+ Turk Hack TeamSald?r? Timleri
+
+
+
+
?stedi?imiz Zaman ?stedi?imiz Yerde!
+ Greetz: ExeOweR ~
Hea7
+
+ [ Turkhackteam.org ]
+
+
From wikiguest at horde.org Sat Feb 10 01:09:10 2024
From: wikiguest at horde.org (Wiki Guest)
Date: Sat, 10 Feb 2024 01:09:10 +0000
Subject: [commits] [Wiki] changed: inurl:"admin/my_documents/my_files
Message-ID: <20240210010910.Horde.cbb2suYoUzVuDCMxV1exmqU@wiki.horde.org>
guest [142.247.207.194] Sat, 10 Feb 2024 01:09:10 +0000
Modified page: https://wiki.horde.org/inurl%3A%22admin/my_documents/my_files
New Revision: 3
Change log: admin
@@ -1,49 +1,37 @@
-
-
-
-
-
- Hacked By TurkHackTeam | Sald?r? Timleri
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Hacked By;
LordSUCCESS &
Lihtg & ?nvisible Blood
-
- Turk Hack TeamSald?r? Timleri
-
-
-
-
?stedi?imiz Zaman ?stedi?imiz Yerde!
- Greetz: ExeOweR ~
Hea7
-
- [ Turkhackteam.org ]
-
-
+
+ Hacked By Tex AL HRBI
+
+
+
+
+ [!] Hacker Muslim [!]
+
+
+
+
+
+
+
+ Hacked By Tex AL HRBI , ????? ????
+ saudi arabia
+
+
+
+ www.islamhouse.com
+
+ The Muslim response is simple, keep
spreading the truth
+ of Islam, get rid of the misconceptions and allow people to see
the truth so
+ they come to it.
+
+ No one can feel what you feel
+ Free Palestine | Free syria
+
+
+ TEX : Freedom Cry ? ? ? TEX ? ?
+ ?
+
+ QQ
[2132624233]
+
+
+
+
From wikiguest at horde.org Sat Feb 10 01:10:16 2024
From: wikiguest at horde.org (Wiki Guest)
Date: Sat, 10 Feb 2024 01:10:16 +0000
Subject: [commits] [Wiki] changed: admin/RTE_popup_file_atch.asp
Message-ID: <20240210011016.Horde.QSskGly7p8LN2ynP0DXu235@wiki.horde.org>
guest [142.247.207.194] Sat, 10 Feb 2024 01:10:16 +0000
Modified page: https://wiki.horde.org/admin/RTE_popup_file_atch.asp
New Revision: 2
Change log: admin
@@ -1 +1,37 @@
-SSSSSSSSSSSSSSS
+
+ Hacked By Tex AL HRBI
+
+
+
+
+ [!] Hacker Muslim [!]
+
+
+
+
+
+
+
+ Hacked By Tex AL HRBI , ????? ????
+ saudi arabia
+
+
+
+ www.islamhouse.com
+
+ The Muslim response is simple, keep
spreading the truth
+ of Islam, get rid of the misconceptions and allow people to see
the truth so
+ they come to it.
+
+ No one can feel what you feel
+ Free Palestine | Free syria
+
+
+ TEX : Freedom Cry ? ? ? TEX ? ?
+ ?
+
+ QQ
[2132624233]
+
+
+
+
From jan at horde.org Tue Feb 13 16:32:35 2024
From: jan at horde.org (Jan Schneider)
Date: Tue, 13 Feb 2024 16:32:35 +0000
Subject: [commits] [Wiki] deleted: admin/RTE_popup_file_atch.asp
Message-ID: <20240213163235.Horde.A6e26QhXaBS5M07aqXRcMcW@wiki.horde.org>
jan Tue, 13 Feb 2024 16:32:35 +0000
Deleted page: admin/RTE_popup_file_atch.asp
From jan at horde.org Tue Feb 13 16:32:42 2024
From: jan at horde.org (Jan Schneider)
Date: Tue, 13 Feb 2024 16:32:42 +0000
Subject: [commits] [Wiki] deleted: inurl:"admin/my_documents/my_files
Message-ID: <20240213163242.Horde.vT824YrnF6MbCsqfZAPL27H@wiki.horde.org>
jan Tue, 13 Feb 2024 16:32:42 +0000
Deleted page: inurl:"admin/my_documents/my_files
From jan at horde.org Tue Feb 13 16:32:54 2024
From: jan at horde.org (Jan Schneider)
Date: Tue, 13 Feb 2024 16:32:54 +0000
Subject: [commits] [Wiki] deleted: AltQuota [9]
Message-ID: <20240213163254.Horde.n_njY3ajUOOWw4iHjNDsslX@wiki.horde.org>
jan Tue, 13 Feb 2024 16:32:54 +0000
Deleted version: 9 of AltQuota
From jan at horde.org Tue Feb 13 16:33:03 2024
From: jan at horde.org (Jan Schneider)
Date: Tue, 13 Feb 2024 16:33:03 +0000
Subject: [commits] [Wiki] deleted: my_documents/my_files
Message-ID: <20240213163303.Horde.7nsE5regA2nozQ9ehOsYb1m@wiki.horde.org>
jan Tue, 13 Feb 2024 16:33:03 +0000
Deleted page: my_documents/my_files
From jan at horde.org Tue Feb 13 16:33:12 2024
From: jan at horde.org (Jan Schneider)
Date: Tue, 13 Feb 2024 16:33:12 +0000
Subject: [commits] [Wiki] deleted: inurl:"admin
Message-ID: <20240213163312.Horde.iCi6wpysjoFOf-EfRXChDdt@wiki.horde.org>
jan Tue, 13 Feb 2024 16:33:12 +0000
Deleted page: inurl:"admin
From jan at horde.org Tue Feb 13 16:33:22 2024
From: jan at horde.org (Jan Schneider)
Date: Tue, 13 Feb 2024 16:33:22 +0000
Subject: [commits] [Wiki] deleted: ImpModule
Message-ID: <20240213163322.Horde.ICwZkrJGP7y8O8mJ6AeumZK@wiki.horde.org>
jan Tue, 13 Feb 2024 16:33:22 +0000
Deleted page: ImpModule
From wikiguest at horde.org Fri Feb 23 05:15:25 2024
From: wikiguest at horde.org (Wiki Guest)
Date: Fri, 23 Feb 2024 05:15:25 +0000
Subject: [commits] [Wiki] changed: Horde4Packages
Message-ID: <20240223051525.Horde.lGOh4nvBZvz7Hm-A9TFU8hA@wiki.horde.org>
guest [107.77.207.92] Fri, 23 Feb 2024 05:15:25 +0000
Modified page: https://wiki.horde.org/Horde4Packages
New Revision: 15
Change log: No more narcissistic bullshit
@@ -1,81 +1 @@
-Horde_ActiveSync
-Horde_Alarm
-Horde_Argv
-Horde_Auth
-Horde_Autoloader
-Horde_Browser
-Horde_Cache
-Horde_Cli
-Horde_Compress
-Horde_Constraint
-Horde_Controller
-Horde_Core
-Horde_Crypt
-Horde_Data
-Horde_DataTree
-Horde_Date
-Horde_Date_Parser
-Horde_Db
-Horde_Editor
-Horde_Exception
-Horde_Feed
-Horde_Form
-Horde_Group
-Horde_History
-Horde_Http
-Horde_Icalendar
-Horde_Image
-Horde_Imap_Client
-Horde_Imsp
-Horde_Injector
-Horde_Itip
-Horde_Kolab_Format
-Horde_Kolab_Server
-Horde_Kolab_Session
-Horde_Kolab_Storage
-Horde_Ldap
-Horde_Lock
-Horde_Log
-Horde_LoginTasks
-Horde_Mail
-Horde_Memcache
-Horde_Mime
-Horde_Mime_Viewer
-Horde_Nls
-Horde_Notification
-Horde_Oauth
-Horde_Pdf
-Horde_Perms
-Horde_Prefs
-Horde_Rdo
-Horde_Role
-Horde_Routes
-Horde_Rpc
-Horde_Scribe
-Horde_Secret
-Horde_Serialize
-Horde_Service_Facebook
-Horde_Service_Twitter
-Horde_SessionHandler
-Horde_Share
-Horde_SpellChecker
-Horde_Stream_Filter
-Horde_Stream_Wrapper
-Horde_Support
-Horde_SyncMl
-Horde_Template
-Horde_Test
-Horde_Text_Diff
-Horde_Text_Filter
-Horde_Text_Filter_Csstidy
-Horde_Text_Flowed
-Horde_Token
-Horde_Translation
-Horde_Tree
-Horde_Url
-Horde_Util
-Horde_Vfs
-Horde_View
-Horde_Xml_Element
-Horde_Xml_Wbxml
-Horde_Yaml
+
From mrubinsk at horde.org Fri Feb 23 16:32:30 2024
From: mrubinsk at horde.org (Michael Rubinsky)
Date: Fri, 23 Feb 2024 16:32:30 +0000
Subject: [commits] [Wiki] deleted: Horde4Packages [15]
Message-ID: <20240223163230.Horde.Ib0LmQN_oYL7VTQ8hD4uhj8@wiki.horde.org>
mrubinsk Fri, 23 Feb 2024 16:32:30 +0000
Deleted version: 15 of Horde4Packages
From wikiguest at horde.org Sun Feb 25 01:57:54 2024
From: wikiguest at horde.org (Wiki Guest)
Date: Sun, 25 Feb 2024 01:57:54 +0000
Subject: [commits] [Wiki] created:
admin/my_documents/my_files/admin/rte_popup_file_atch.asp
Message-ID: <20240225015754.Horde.KMJ_Ii3w8t4f20Fz816ZI9G@wiki.horde.org>
guest [51.158.237.153] Sun, 25 Feb 2024 01:57:54 +0000
Created page:
https://wiki.horde.org/admin/my_documents/my_files/admin/rte_popup_file_atch.asp
Worm-Craft
BATUFLEX HACKED hAhAhA xD
t.me/BatuPHP
Telegram
Grubum
Bana meydan okuyup bilgilerimi aramasaydınız
bu indexi görmezdiniz oç çakır :D
From wikiguest at horde.org Thu Feb 29 21:33:26 2024
From: wikiguest at horde.org (Wiki Guest)
Date: Thu, 29 Feb 2024 21:33:26 +0000
Subject: [commits] [Wiki] changed:
admin/my_documents/my_files/admin/rte_popup_file_atch.asp
Message-ID: <20240229213326.Horde.uM93azBZDL40oyPXh0NIztC@wiki.horde.org>
guest [91.32.113.174] Thu, 29 Feb 2024 21:33:26 +0000
Modified page:
https://wiki.horde.org/admin/my_documents/my_files/admin/rte_popup_file_atch.asp
New Revision: 2
Change log: deleted spam
@@ -1,159 +1 @@
-
-
-
-
- Worm-Craft
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BATUFLEX HACKED hAhAhA xD
-
-
-
- t.me/BatuPHP
-
-
-
- Telegram
Grubum
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Bana meydan okuyup bilgilerimi aramasayd?n?z
bu indexi görmezdiniz oç çak?r :D
-
-
-
-
-
-
-
-
-
-
-
-