Aleksander Machniak
2016-03-28 46f7b7096450939fe03c95aa81ce06ae4bfca89d
commit | author | age
38c9df 1 <?php
TB 2
3 /*
4  +-----------------------------------------------------------------------+
5  | Roundcube Webmail IMAP Client                                         |
6  | Version 1.0-git                                                       |
7  |                                                                       |
8  | Copyright (C) 2005-2013, 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  |   Roundcue webmail application.                                       |
17  +-----------------------------------------------------------------------+
18  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
19  | Author: Aleksander Machniak <alec@alec.pl>                            |
20  +-----------------------------------------------------------------------+
21 */
22
23 define('INSTALL_PATH', realpath(__DIR__ . '/..') . '/');
24
25 // include index.php from application root directory
26 include INSTALL_PATH . 'index.php';
27