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

1234567891011121314151617181920212223242526272829
  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 http://postfixadmin.sf.net
  10. *
  11. * @version $Id$
  12. * @license GNU GPL v2 or later.
  13. *
  14. * File: index.php
  15. * Redirects potential users to login.php
  16. * Template File: -none-
  17. *
  18. * Template Variables:
  19. *
  20. * -none-
  21. *
  22. * Form POST \ GET Variables:
  23. *
  24. * -none-
  25. */
  26. header("Location: login.php");
  27. exit;
  28. /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */