1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | Roundcube Webmail IMAP Client                                         |
6 | Version 1.5.1                                                         |
7 |                                                                       |
8 | Copyright (C) The Roundcube Dev Team                                  |
9 |                                                                       |
10 | Licensed under the GNU General Public License version 3 or            |
11 | any later version with exceptions for skins & plugins.                |
12 | See the README file for a full license statement.                     |
13 |                                                                       |
14 | PURPOSE:                                                              |
15 |   This is the public entry point for all HTTP requests to the         |
16 |   Roundcube webmail application.                                      |
17 +-----------------------------------------------------------------------+
18 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
19 | Author: Aleksander Machniak <alec@alec.pl>                            |
20 +-----------------------------------------------------------------------+
21*/
22
23define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/');
24
25// include index.php from application root directory
26include INSTALL_PATH . 'index.php';
27