⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
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 :
~
/
usr
/
share
/
psa-horde
/
ingo
/
lib
/
Script
/
Imap
/
View File Name :
Api.php
* @category Horde * @license http://www.horde.org/licenses/apache ASL * @package Ingo */ /** * This file defines the base driver class for Ingo_Script_Imap. * * @author Michael Slusarz
* @category Horde * @license http://www.horde.org/licenses/apache ASL * @package Ingo */ abstract class Ingo_Script_Imap_Api { /** * Configuration parameters. * * @var array */ protected $_params; /** * TODO */ public function __construct($params = array()) { $this->_params = $params; } /** * TODO * * @return mixed */ abstract public function deleteMessages($indices); /** * TODO * * @return boolean */ abstract public function moveMessages($indices, $folder); /** * TODO * * @return boolean */ abstract public function copyMessages($indices, $folder); /** * TODO */ abstract public function setMessageFlags($indices, $flags); /** * TODO * * @return Horde_Imap_Client_Data_Fetch */ abstract public function fetchEnvelope($indices); /** * TODO */ abstract public function search($query); /** * TODO */ public function getCache() { return false; } /** * TODO */ public function storeCache($timestamp) { } }