⚝
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 :
~
/
usr
/
share
/
psa-horde
/
imp
/
lib
/
Edit File: Maillog.php
<?php /** * Copyright 2003-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.horde.org/licenses/gpl. * * @category Horde * @copyright 2003-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ /** * Base class implementing logging of responses to e-mail messages. * * @author Michael Slusarz <slusarz@horde.org> * @category Horde * @copyright 2003-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ class IMP_Maillog { /** * Storage driver. * * @var IMP_Maillog_Storage_Base */ public $storage; /** * Constructor. * * @param IMP_Maillog_Storage_Base $storage Storage driver. */ public function __construct(IMP_Maillog_Storage_Base $storage) { $this->storage = $storage; } /** * Create a log entry. * * @param mixed $msgs An IMP_Maillog_Message object (or an * array of objects). * @param IMP_Maillog_Log_Base $log The log object. */ public function log($msgs, IMP_Maillog_Log_Base $log) { foreach ((is_array($msgs) ? $msgs : array($msgs)) as $val) { $this->storage->saveLog($val, $log); } } /** * Retrieve history for a message. * * @param IMP_Maillog_Message $msg A message object. * @param array $filter Filter these actions. * * @return array List of IMP_Maillog_Log_Base objects. */ public function getLog(IMP_Maillog_Message $msg, array $filter = array()) { return $this->storage->getLog($msg, $filter); } /** * Delete log entries. * * @param IMP_Maillog_Messages|array $msgs A list of message objects to * delete. */ public function deleteLog($msgs) { $this->storage->deleteLogs($msgs); } /** * Retrieve changes to the maillog since the provided timestamp. * * @param integer $ts Timestamp. * * @return array An array of messages (IMP_Maillog_Message objects) * changed since the provided timestamp. */ public function getChanges($ts) { return $this->storage->getChanges($ts); } }
Simpan