home *** CD-ROM | disk | FTP | other *** search
- <%
- ////////////////////////////////////////////////////////////////////////////////////
- // boolean definitions
- //
-
- const true = 1
- const false = 0
-
- ////////////////////////////////////////////////////////////////////////////////////
- // null definition
- //
-
- const null = 0
-
- ////////////////////////////////////////////////////////////////////////////////////
- // log object
- //
-
- // These are the valid assignments for log.level and log.emaillevel (only first two)
- //
- const LOG_CRITICAL = 0
- const LOG_WARNINGS = 1
- const LOG_NORMAL = 2
- const LOG_DEBUG = 3
-
- /////////////////////////////////////////////////////////////////////////////////////
- // domain object
- //
-
- // domain.deliverystartmethod
- //
- const DSM_IMMEDIATELY = 0
- const DSM_ONETRN = 1
- const DSM_ONFINGER = 2
- const DSM_ONCONDITION = 3
-
- // domain.dnsfailuremethod
- //
- const DFM_FORWARDTOISP = 0
- const DFM_HOLDANDRETRY = 1
-
- // domain.postmastermethod
- //
- const PMM_REJECT = 0
- const PMM_SENDTOPOSTMASTER = 1
- const PMM_ATTACHTOPOSTMASTER = 2
- const PMM_FORWARDTOINTERNET = 3
- const PMM_FORWARDTOADDRESS = 4
-
- // domain.types
- //
- const DOM_LOCAL = 0
- const DOM_REMOTE = 1
-
- /////////////////////////////////////////////////////////////////////////////////////
- // mailbox object
- //
-
- // mailbox.type
- //
- const MBX_DAEMON = 1
- const MBX_NULL = 2
- const MBX_USER = 3
- const MBX_LIST = 4
- const MBX_AUTO = 5
- const MBX_ROBOT = 6
- const MBX_GROUP = 7
- const MBX_DOMAIN = 8
- const MBX_DSN = 9
- const MBX_ALIAS = 10
-
- // mailbox.autoresponsemethod
- //
- const ARM_NOTHING = 0
- const ARM_SENDMESSAGE = 2
-
- // mailbox.forwardmethod
- //
- const FM_KEEP = 0
- const FM_FORWARDKEEP = 1
- const FM_FORWARDDELETE = 2
-
- // mailbox.outofofficestate
- //
- const OOO_IN = 0
- const OOO_OUT = 1
- const OOO_MESSAGE = 2
-
- // mailbox_quotaaction
- //
- const QA_ACCEPT = 0
- const QA_ACCEPTNOTIFY = 1
- const QA_REJECT = 2
- const QA_REJECTNOTIFY = 3
-
- ////////////////////////////////////////////////////////////////////////////////////
- // schedule object
- //
-
- // schedule.connectionmethod
- //
- const CM_LAN = 0
- const CM_PROXYROUTER = 1
- const CM_DIALUP = 2
-
- // schedule.daysofweek
- //
- const DOW_MONDAY = 1
- const DOW_TUESDAY = 2
- const DOW_WEDNESDAY = 4
- const DOW_THURSDAY = 8
- const DOW_FRIDAY = 16
- const DOW_SATURDAY = 32
- const DOW_SUNDAY = 64
-
-
- ////////////////////////////////////////////////////////////////////////////////////
- // transport object
- //
-
- // transport.filter.attachment.action
- //
- const AFA_ALLOW = 0
- const AFA_UNUSED1 = 1
- const AFA_UNUSED2 = 2
- const AFA_PURGE = 3
- const AFA_QUARANTINE = 4
- const AFA_DELETE = 5
-
- // transport.virus.ext.mode
- //
- const AVS_ALLOW = 0
- const AVS_QUARANTINE = 1
- const AVS_DELETE = 2
-
- ////////////////////////////////////////////////////////////////////////////////////
- // httpproxy object
- //
-
- // httpproxy.sitesecurity
- //
- const PSS_NOSECURITY = 0
- const PSS_BARRED = 1
- const PSS_PERMITTED = 2
-
- ////////////////////////////////////////////////////////////////////////////////////
- // Transport object
- //
-
- // transport.status
- //
- const TRK_SUBMITTED = 0
- const TRK_DELIVERED = 1
- const TRK_QUEUED = 2
- const TRK_QUARANTINED = 3
- const TRK_BOUNCED = 4
- const TRK_KILLED = 5
- const TRK_SENT = 6
- %>