RoundCube Webmail
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.3 KiB

  1. <?php
  2. /*
  3. +-----------------------------------------------------------------------+
  4. | Roundcube Webmail IMAP Client |
  5. | |
  6. | Copyright (C) The Roundcube Dev Team |
  7. | |
  8. | Licensed under the GNU General Public License version 3 or |
  9. | any later version with exceptions for skins & plugins. |
  10. | See the README file for a full license statement. |
  11. | |
  12. | PURPOSE: |
  13. | This is the public entry point for all HTTP requests to the |
  14. | Roundcube Installer. |
  15. +-----------------------------------------------------------------------+
  16. | Author: Aleksander Machniak <alec@alec.pl> |
  17. +-----------------------------------------------------------------------+
  18. */
  19. if (!file_exists(__DIR__ . '/../installer/index.php')) {
  20. http_response_code(404);
  21. exit;
  22. }
  23. require __DIR__ . '/../installer/index.php';