home *** CD-ROM | disk | FTP | other *** search
- ;┌────────────────────────────────────┬─────────────────────────────────────┐
- ;│██▀▀▀▀█ ██▀▀▀▀▀▀ ██▀▀▀▀▀▀ │ For support, contact: │
- ;│██▄▄▄▄█▄ ██▄▄▄▄▄ ██▄▄▄▄▄ │ │
- ;│██ ▄█ ██ ██ │ Scott Burkett, Sysop │
- ;│██▄▄▄▄▄█ ██ ██▄▄▄▄▄▄ v1.40.3α│ Under the Nile BBS, 1:3613/12 │
- ;│ │ (706) 596-8126 9600 v.32 │
- ;│BBS Front-End System └─────────────────────────────────────┤
- ;│(C)opyright 1992, 1993 Cairo Research Labs, All Rights Reserved │
- ;└──────────────────────────────────────────────────────────────────────────┘
-
- ; Custom door information file support. BFE automatically recognizes
- ; most door information file (drop file) formats, including DORINFO?.DEF,
- ; EXITINFO.BBS, DOOR.SYS, SFDOORS.DAT, CALLINFO.BBS and CHAIN.TXT. However,
- ; to permit BFE to operate on BBS systems that produce a different format
- ; file, you may define a custom door information file format. A custom door
- ; information file format is defined using the "CustomFileName" command,
- ; followed by one or more lines beginning with the "CustomFileLine" command.
- ;
- ; The "CustomFileName" option specifies the filename used to distinguish this
- ; file format from other file formats. This filename should not include a
- ; path. To specify the path where the door information file is located, use
- ; the BBSDir setting, near the beginning of this file. If the filename of the
- ; custom format is the same as that of one of the built-in formats, the custom
- ; format will override the built-in format.
- ;
- ; The actual format of the custom file is specified using a number of lines
- ; that begin with the keyword "CustomFileLine". Each of these lines will
- ; correspond to a single line in the door information file, with the option
- ; following the "CustomFileLine" keyword specifying the information that can
- ; be found on that line. This can be one of the following keywords:
- ;
- ; Ignore - Causes the next line in the door information
- ; file to be ignored. Use on lines for which none
- ; of the options below apply.
- ; ComPort - COM? port the modem is connected to
- ; (0 indicates local mode)
- ; FossilPort - Fossil port number the modem is connected to
- ; ModemBPS - BPS rate at which to communicate with modem
- ; (0 or non-numerical value indicates local mode)
- ; LocalMode - 1, T or Y if door is operating in local mode
- ; UserName - Full name of the user
- ; UserFirstName - First name(s) of the user
- ; UserLastName - Last name of the user
- ; Alias - The user's psuedonym / handle
- ; HoursLeft - Hours user has left online
- ; MinutesLeft - Minutes user has left online, or time left online
- ; in format hh:mm
- ; SecondsLeft - Seconds user has left online, or time left online
- ; in format hh:mm:ss or format mm:ss
- ; (If more than one of the above time options are
- ; used, the user time left is taken to be the total
- ; of all of these values.)
- ; ANSI - 1, T, Y or G for ANSI graphics mode
- ; AVATAR - 1, T or Y for AVATAR graphics mode
- ; PagePausing - 1, T or Y if user wishes a pause at end of screen
- ; ScreenLength - Number of lines on user's screen
- ; ScreenClearing - 1, T or Y if screen clearing mode is on
- ; Security - The user's security level / access level
- ; City - City the user is calling from
- ; Node - Node number user is connected to
- ; SysopName - Full name of the sysop
- ; SysopFirstName - The sysop's first name(s)
- ; SysopLastName - The sysop's last name
- ; SystemName - Name of the BBS
- ;
- ;
-
- ; This example is in the same format as the DORINFOx.DEF dropfile
-
- CustomFileName EXAMPLE.DEF
- CustomFileLine SystemName
- CustomFileLine SysopFirstName
- CustomFileLine SysopLastName
- CustomFileLine ComPort
- CustomFileLine ModemBPS
- CustomFileLine Ignore
- CustomFileLine UserFirstName
- CustomFileLine UserLastName
- CustomFileLine City
- CustomFileLine ANSI
- CustomFileLine Security
- CustomFileLine MinutesLeft
- ;
-