home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2002 March / PCWMAR02.iso / software / windowsxp / ftgateoffice / ftgateoffice.exe / Main / ftgate.fts < prev    next >
Encoding:
Text File  |  2001-11-29  |  3.3 KB  |  159 lines

  1. <%
  2. ////////////////////////////////////////////////////////////////////////////////////
  3. // boolean definitions
  4. //
  5.  
  6. const true    = 1
  7. const false    = 0
  8.  
  9. ////////////////////////////////////////////////////////////////////////////////////
  10. // null definition
  11. //
  12.  
  13. const null    = 0
  14.  
  15. ////////////////////////////////////////////////////////////////////////////////////
  16. // log object
  17. //
  18.  
  19. // These are the valid assignments for log.level and log.emaillevel (only first two)
  20. //
  21. const LOG_CRITICAL    = 0
  22. const LOG_WARNINGS    = 1
  23. const LOG_NORMAL        = 2
  24. const LOG_DEBUG            = 3
  25.  
  26. /////////////////////////////////////////////////////////////////////////////////////
  27. // domain object
  28. //
  29.  
  30. // domain.deliverystartmethod
  31. //
  32. const DSM_IMMEDIATELY    = 0
  33. const DSM_ONETRN            = 1
  34. const DSM_ONFINGER        = 2
  35. const DSM_ONCONDITION    = 3
  36.  
  37. // domain.dnsfailuremethod
  38. //
  39. const DFM_FORWARDTOISP    = 0
  40. const DFM_HOLDANDRETRY    = 1
  41.  
  42. // domain.postmastermethod
  43. //
  44. const PMM_REJECT                            = 0
  45. const PMM_SENDTOPOSTMASTER        = 1
  46. const PMM_ATTACHTOPOSTMASTER    = 2
  47. const PMM_FORWARDTOINTERNET        = 3
  48. const PMM_FORWARDTOADDRESS        = 4
  49.  
  50. // domain.types
  51. //
  52. const DOM_LOCAL        = 0
  53. const DOM_REMOTE    = 1
  54.  
  55. /////////////////////////////////////////////////////////////////////////////////////
  56. // mailbox object
  57. //
  58.  
  59. // mailbox.type
  60. //
  61. const MBX_DAEMON    = 1
  62. const MBX_NULL        = 2
  63. const MBX_USER        = 3
  64. const MBX_LIST        = 4
  65. const MBX_AUTO        = 5
  66. const MBX_ROBOT        = 6
  67. const MBX_GROUP        = 7
  68. const MBX_DOMAIN    = 8
  69. const MBX_DSN            = 9
  70. const MBX_ALIAS        = 10
  71.  
  72. // mailbox.autoresponsemethod
  73. //
  74. const ARM_NOTHING            = 0
  75. const ARM_SENDMESSAGE    =    2
  76.  
  77. // mailbox.forwardmethod
  78. //
  79. const FM_KEEP                        = 0
  80. const FM_FORWARDKEEP        = 1
  81. const FM_FORWARDDELETE    = 2
  82.  
  83. // mailbox.outofofficestate
  84. //
  85. const OOO_IN            = 0
  86. const OOO_OUT            = 1
  87. const OOO_MESSAGE = 2
  88.  
  89. // mailbox_quotaaction
  90. //
  91. const QA_ACCEPT                = 0
  92. const QA_ACCEPTNOTIFY    = 1
  93. const QA_REJECT                = 2
  94. const QA_REJECTNOTIFY    = 3
  95.  
  96. ////////////////////////////////////////////////////////////////////////////////////
  97. // schedule object
  98. //
  99.  
  100. // schedule.connectionmethod
  101. //
  102. const CM_LAN                    = 0
  103. const CM_PROXYROUTER    = 1
  104. const CM_DIALUP                = 2
  105.  
  106. // schedule.daysofweek
  107. //
  108. const DOW_MONDAY            = 1
  109. const DOW_TUESDAY            = 2
  110. const DOW_WEDNESDAY        = 4
  111. const DOW_THURSDAY        = 8
  112. const DOW_FRIDAY            = 16
  113. const DOW_SATURDAY        = 32
  114. const DOW_SUNDAY            = 64
  115.  
  116.  
  117. ////////////////////////////////////////////////////////////////////////////////////
  118. // transport object
  119. //
  120.  
  121. // transport.filter.attachment.action
  122. //
  123. const AFA_ALLOW                    = 0
  124. const AFA_UNUSED1                = 1
  125. const AFA_UNUSED2                = 2
  126. const AFA_PURGE                    = 3
  127. const AFA_QUARANTINE        = 4
  128. const AFA_DELETE                = 5
  129.  
  130. // transport.virus.ext.mode
  131. //
  132. const AVS_ALLOW                    = 0
  133. const AVS_QUARANTINE        = 1
  134. const AVS_DELETE                = 2
  135.  
  136. ////////////////////////////////////////////////////////////////////////////////////
  137. // httpproxy object
  138. //
  139.  
  140. // httpproxy.sitesecurity
  141. //
  142. const PSS_NOSECURITY    = 0
  143. const PSS_BARRED            = 1
  144. const PSS_PERMITTED        = 2
  145.  
  146. ////////////////////////////////////////////////////////////////////////////////////
  147. // Transport object
  148. //
  149.  
  150. // transport.status
  151. //
  152. const TRK_SUBMITTED        = 0
  153. const TRK_DELIVERED        = 1
  154. const TRK_QUEUED            = 2
  155. const TRK_QUARANTINED    = 3
  156. const TRK_BOUNCED            = 4
  157. const TRK_KILLED            = 5
  158. const TRK_SENT                = 6
  159. %>