PostfixAdmin - web based virtual user administration interface for Postfix mail servers https://postfixadmin.github.io/postfixadmin/
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.

30 lines
621 B

  1. <?php
  2. /**
  3. * Postfix Admin
  4. *
  5. * LICENSE
  6. * This source file is subject to the GPL license that is bundled with
  7. * this package in the file LICENSE.TXT.
  8. *
  9. * Further details on the project are available at :
  10. * http://www.postfixadmin.com or http://postfixadmin.sf.net
  11. *
  12. * @version $Id$
  13. * @license GNU GPL v2 or later.
  14. *
  15. * File: index.php
  16. * Redirects potential users to login.php
  17. * Template File: -none-
  18. *
  19. * Template Variables:
  20. *
  21. * -none-
  22. *
  23. * Form POST \ GET Variables:
  24. *
  25. * -none-
  26. */
  27. header ("Location: login.php");
  28. exit;
  29. /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */