This file is indexed.

/usr/share/php/Horde/Imap/Client/Exception/ServerResponse.php is in php-horde-imap-client 2.25.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
 * Copyright 2012-2014 Horde LLC (http://www.horde.org/)
 *
 * See the enclosed file COPYING for license information (LGPL). If you
 * did not receive this file, see http://www.horde.org/licenses/lgpl21.
 *
 * @category  Horde
 * @copyright 2012-2014 Horde LLC
 * @license   http://www.horde.org/licenses/lgpl21 LGPL 2.1
 * @package   Imap_Client
 */

/**
 * Exception thrown for server error responses.
 *
 * @author    Michael Slusarz <slusarz@horde.org>
 * @category  Horde
 * @copyright 2012-2014 Horde LLC
 * @license   http://www.horde.org/licenses/lgpl21 LGPL 2.1
 * @package   Imap_Client
 *
 * @property-read string $command  The command that caused the BAD/NO error
 *                                 status.
 * @property-read array $resp_data  The response data array.
 * @property-read integer $status  Server error status.
 */
class Horde_Imap_Client_Exception_ServerResponse extends Horde_Imap_Client_Exception
{
    /**
     * Pipeline object.
     *
     * @var Horde_Imap_Client_Interaction_Pipeline
     */
    protected $_pipeline;

    /**
     * Server response object.
     *
     * @var Horde_Imap_Client_Interaction_Server
     */
    protected $_server;

    /**
     * Constructor.
     *
     * @param string $msg                                       Error message.
     * @param integer $code                                     Error code.
     * @param Horde_Imap_Client_Interaction_Server $server      Server ob.
     * @param Horde_Imap_Client_Interaction_Pipeline $pipeline  Pipeline ob.
     */
    public function __construct(
        $msg = null,
        $code = 0,
        Horde_Imap_Client_Interaction_Server $server,
        Horde_Imap_Client_Interaction_Pipeline $pipeline
    )
    {
        $this->details = strval($server->token);

        $this->_pipeline = $pipeline;
        $this->_server = $server;

        parent::__construct($msg, $code);
    }

    /**
     */
    public function __get($name)
    {
        switch ($name) {
        case 'command':
            return ($this->_server instanceof Horde_Imap_Client_Interaction_Server_Tagged)
                ? $this->_pipeline->getCmd($this->_server->tag)->getCommand()
                : null;

        case 'resp_data':
            return $this->_pipeline->data;

        case 'status':
            return $this->_server->status;

        default:
            return parent::__get($name);
        }
    }

}