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.

102 lines
2.2 KiB

  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: variables.inc.php
  16. * Contains varoius pre-defined variables.
  17. *
  18. * XXX Probably a hack to save having to declare variables before using them in pages.
  19. */
  20. if (ereg ("variables.inc.php", $_SERVER['PHP_SELF']))
  21. {
  22. header ("Location: login.php");
  23. exit;
  24. }
  25. $error = "";
  26. $escaped_string = "";
  27. $quota = "";
  28. $vacation = "";
  29. $fActive = "";
  30. $fAddress = "";
  31. $fAliases = "";
  32. $fBackupmx = "";
  33. $fDefaultaliases = "";
  34. $fDelete = "";
  35. $fDescription = "";
  36. $fDomain = "";
  37. $fDomains = "";
  38. $fDomains[0] = "";
  39. $fFrom = "";
  40. $fGoto = "";
  41. $fHeaders = "";
  42. $fMail = "";
  43. $fMailboxes = "";
  44. $fMaxquota = "";
  45. $fName = "";
  46. $fPassword = "";
  47. $fPassword2 = "";
  48. $fQuota = "";
  49. $fSearch = "";
  50. $fTable = "";
  51. $fTransport = "";
  52. $fTo = "";
  53. $fUsername = "";
  54. $fVacation = "";
  55. $fWhere = "";
  56. $tActive = "";
  57. $tActive = "";
  58. $tAddress = "";
  59. $tAlias = "";
  60. $tAliases = "";
  61. $tBody = "";
  62. $tDefaultaliases = "";
  63. $tDescription = "";
  64. $tDisplay_back = "";
  65. $tDisplay_back_show = "";
  66. $tDisplay_up_show = "";
  67. $tDisplay_next = "";
  68. $tDisplay_next_show = "";
  69. $tDomain = "";
  70. $tDomains = "";
  71. $tFrom = "";
  72. $tGoto = "";
  73. $tLog = "";
  74. $tMailbox = "";
  75. $tMailboxes = "";
  76. $tMaxquota = "";
  77. $tMessage = "&nbsp;";
  78. $tName = "";
  79. $tQuota = "";
  80. $tSubject = "";
  81. $tUsername = "";
  82. $tTransport = "";
  83. $pAdminCreate_admin_password_text = "&nbsp;";
  84. $pAdminCreate_admin_username_text = "&nbsp;";
  85. $pAdminCreate_domain_defaultaliases_text = "&nbsp;";
  86. $pAdminCreate_domain_domain_text = "&nbsp;";
  87. $pAdminEdit_admin_password_text = "&nbsp;";
  88. $pCreate_alias_address_text = "&nbsp;";
  89. $pCreate_alias_goto_text = "&nbsp;";
  90. $pCreate_mailbox_name_text = "&nbsp;";
  91. $pCreate_mailbox_password_text = "&nbsp;";
  92. $pCreate_mailbox_quota_text = "&nbsp;";
  93. $pCreate_mailbox_username_text = "&nbsp;";
  94. $pEdit_mailbox_password_text = "&nbsp;";
  95. $pEdit_mailbox_quota_text = "&nbsp;";
  96. $pEdit_mailbox_username_text = "&nbsp;";
  97. $pPassword_admin_text = "&nbsp;";
  98. $pPassword_password_current_text = "&nbsp;";
  99. $pPassword_password_text = "&nbsp;";
  100. ?>