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.

variables.inc.php 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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: variables.inc.php 1558 2013-11-10 15:57:32Z christian_boltz $
  12. * @license GNU GPL v2 or later.
  13. *
  14. * File: variables.inc.php
  15. * Contains varoius pre-defined variables.
  16. *
  17. * XXX Probably a hack to save having to declare variables before using them in pages.
  18. */
  19. $error = "";
  20. $quota = "";
  21. $vacation = "";
  22. $fActive = "";
  23. $fAddress = "";
  24. $fAliases = "";
  25. $fBackupmx = "";
  26. $fDelete = "";
  27. $fDescription = "";
  28. $fDomain = "";
  29. $fDomains = "";
  30. $fDomains[0] = "";
  31. $fFrom = "";
  32. $fGoto = "";
  33. $fHeaders = "";
  34. $fMail = "";
  35. $fMailboxes = "";
  36. $fMaxquota = "";
  37. $fName = "";
  38. $fPassword = "";
  39. $fPassword2 = "";
  40. $fQuota = "";
  41. $fSearch = "";
  42. $fTable = "";
  43. $fTransport = "";
  44. $fTo = "";
  45. $fUsername = "";
  46. $fVacation = "";
  47. $fWhere = "";
  48. $tActive = "";
  49. $tActive = "";
  50. $tAddress = "";
  51. $tAlias = "";
  52. $tAliases = "";
  53. $tBody = "";
  54. $tDescription = "";
  55. $tDomain = "";
  56. $tDomains = "";
  57. $tFrom = "";
  58. $tGoto = "";
  59. $tLog = "";
  60. $tMailbox = "";
  61. $tMailboxes = "";
  62. $tMaxquota = "";
  63. $tName = "";
  64. $tQuota = "";
  65. $tSubject = "";
  66. $tUsername = "";
  67. $tTransport = "";
  68. /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
  69. ?>