This file is indexed.

/usr/share/php/Horde/Mail/Autoconfig/Driver/Thunderbird.php is in php-horde-mail-autoconfig 1.0.2-3ubuntu1.

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
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/**
 * Copyright 2014-2015 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 2014-2015 Horde LLC
 * @license   http://www.horde.org/licenses/lgpl21 LGPL 2.1
 * @package   Mail_Autoconfig
 */

/**
 * Perform configuration lookups based on services provided by
 * Mozilla/Thunderbird.
 *
 * See: https://wiki.mozilla.org/Thunderbird:Autoconfiguration
 *
 * @author    Michael Slusarz <slusarz@horde.org>
 * @category  Horde
 * @copyright 2014-2015 Horde LLC
 * @license   http://www.horde.org/licenses/lgpl21 LGPL 2.1
 * @package   Mail_Autoconfig
 */
class Horde_Mail_Autoconfig_Driver_Thunderbird
extends Horde_Mail_Autoconfig_Driver
{
    /**
     * Http client.
     *
     * @var Horde_Http_Client
     */
    public $http;

    /**
     * URL of Mozilla ISPDB server lookup.
     *
     * @var string
     */
    public $ispdb = 'https://live.mozillamessaging.com/autoconfig/v1.1/';

    /**
     * Medium priority: not standardized (i.e. RFC), but API is actively
     * maintained by Mozilla.
     */
    public $priority = 20;

    /**
     */
    public function msaSearch($domains, array $opts = array())
    {
        foreach ($domains as $val) {
            $res = $this->_process(
                $val,
                'outgoingServer',
                array('smtp'),
                isset($opts['email']) ? $opts['email'] : null
            );
            if ($res) {
                return $res;
            }
        }

        return false;
    }

    /**
     */
    public function mailSearch($domains, array $opts = array())
    {
        $types = array();
        if (empty($opts['no_imap'])) {
            $types[] = 'imap';
        }
        if (empty($opts['no_pop3'])) {
            $types[] = 'pop3';
        }

        foreach ($domains as $val) {
            $res = $this->_process(
                $val,
                'incomingServer',
                $types,
                isset($opts['email']) ? $opts['email'] : null
            );
            if ($res) {
                return $res;
            }
        }

        return false;
    }

    /**
     * Process a Thunderbird autoconfig entry.
     *
     * @param string $domain                    Domain name.
     * @param string $tag                       XML tag to parse.
     * @param array $types                      List of $tag types to process.
     * @param Horde_Mail_Rfc822_Address $email  Username.
     */
    protected function _process($domain, $tag, $types, $email)
    {
        $out = array();
        $urls = array(
            'http://' . urlencode($domain) . '/.well-known/autoconfig/mail/config-v1.1.xml',
            $this->ispdb . urlencode($domain)
        );
        if (!is_null($email)) {
            array_unshift(
                $urls,
                'http://autoconfig.' . urlencode($domain) . '/mail/config-v1.1.xml?emailaddress=' . urlencode($email->bare_address)
            );
        }

        if (is_null($this->http)) {
            $this->http = new Horde_Http_Client();
        }

        foreach ($urls as $url) {
            try {
                $get = $this->http->get($url);
                if ($get->code == 404) {
                    continue;
                }

                try {
                    $xml = new SimpleXMLElement($get->getBody());
                } catch (Exception $e) {
                    // No valid XML; ignore
                    continue;
                }

                $label = strval($xml->emailProvider->displayName);
                foreach ($xml->emailProvider->{$tag} as $val) {
                    if (in_array($val['type'], $types)) {
                        switch ($val['type']) {
                        case 'imap':
                            $ob = new Horde_Mail_Autoconfig_Server_Imap();
                            break;

                        case 'pop3':
                            $ob = new Horde_Mail_Autoconfig_Server_Pop3();
                            break;

                        case 'smtp':
                            $ob = new Horde_Mail_Autoconfig_Server_Msa();
                            break;
                        }

                        $ob->host = strval($val->hostname);
                        $ob->port = intval(strval($val->port));
                        $ob->label = $label;
                        if (strcasecmp($val->socketType, 'SSL') === 0) {
                            $ob->tls = 'tls';
                        }

                        if (!is_null($email) &&
                            $email->valid &&
                            strlen($val->username)) {
                            $ob->username = str_replace(
                                array(
                                    '%EMAILADDRESS%',
                                    '%EMAILLOCALPART%'
                                ),
                                array(
                                    $email->bare_address,
                                    $email->mailbox
                                ),
                                $val->username
                            );
                        }

                        $out[] = $ob;
                    }
                }

                if (count($out)) {
                    return $out;
                }
            } catch (Horde_Http_Exception $e) {
                // Not found; ignore.
            }
        }

        return false;
    }

}