您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.php 1.4KB

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