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.

98 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. $error = "";
  21. $escaped_string = "";
  22. $quota = "";
  23. $vacation = "";
  24. $fActive = "";
  25. $fAddress = "";
  26. $fAliases = "";
  27. $fBackupmx = "";
  28. $fDefaultaliases = "";
  29. $fDelete = "";
  30. $fDescription = "";
  31. $fDomain = "";
  32. $fDomains = "";
  33. $fDomains[0] = "";
  34. $fFrom = "";
  35. $fGoto = "";
  36. $fHeaders = "";
  37. $fMail = "";
  38. $fMailboxes = "";
  39. $fMaxquota = "";
  40. $fName = "";
  41. $fPassword = "";
  42. $fPassword2 = "";
  43. $fQuota = "";
  44. $fSearch = "";
  45. $fTable = "";
  46. $fTransport = "";
  47. $fTo = "";
  48. $fUsername = "";
  49. $fVacation = "";
  50. $fWhere = "";
  51. $tActive = "";
  52. $tActive = "";
  53. $tAddress = "";
  54. $tAlias = "";
  55. $tAliases = "";
  56. $tBody = "";
  57. $tDefaultaliases = "";
  58. $tDescription = "";
  59. $tDisplay_back = "";
  60. $tDisplay_back_show = "";
  61. $tDisplay_up_show = "";
  62. $tDisplay_next = "";
  63. $tDisplay_next_show = "";
  64. $tDomain = "";
  65. $tDomains = "";
  66. $tFrom = "";
  67. $tGoto = "";
  68. $tLog = "";
  69. $tMailbox = "";
  70. $tMailboxes = "";
  71. $tMaxquota = "";
  72. $tMessage = "&nbsp;";
  73. $tName = "";
  74. $tQuota = "";
  75. $tSubject = "";
  76. $tUsername = "";
  77. $tTransport = "";
  78. $pAdminCreate_admin_password_text = "&nbsp;";
  79. $pAdminCreate_admin_username_text = "&nbsp;";
  80. $pAdminCreate_domain_defaultaliases_text = "&nbsp;";
  81. $pAdminCreate_domain_domain_text = "&nbsp;";
  82. $pAdminEdit_admin_password_text = "&nbsp;";
  83. $pCreate_alias_address_text = "&nbsp;";
  84. $pCreate_alias_goto_text = "&nbsp;";
  85. $pCreate_mailbox_name_text = "&nbsp;";
  86. $pCreate_mailbox_password_text = "&nbsp;";
  87. $pCreate_mailbox_quota_text = "&nbsp;";
  88. $pCreate_mailbox_username_text = "&nbsp;";
  89. $pEdit_mailbox_password_text = "&nbsp;";
  90. $pEdit_mailbox_quota_text = "&nbsp;";
  91. $pEdit_mailbox_username_text = "&nbsp;";
  92. $pPassword_admin_text = "&nbsp;";
  93. $pPassword_password_current_text = "&nbsp;";
  94. $pPassword_password_text = "&nbsp;";
  95. /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */