home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / BFE1410P.ZIP / CUSTOM.BFE < prev    next >
Text File  |  1993-08-16  |  5KB  |  84 lines

  1. ;┌────────────────────────────────────┬─────────────────────────────────────┐
  2. ;│██▀▀▀▀█   ██▀▀▀▀▀▀ ██▀▀▀▀▀▀         │  For support, contact:              │
  3. ;│██▄▄▄▄█▄  ██▄▄▄▄▄  ██▄▄▄▄▄          │                                     │
  4. ;│██    ▄█  ██       ██               │  Scott Burkett, Sysop               │
  5. ;│██▄▄▄▄▄█  ██       ██▄▄▄▄▄▄ v1.41.0p│  Under the Nile BBS, 1:3613/12      │
  6. ;│                                    │  (706) 596-8126 9600 v.32           │
  7. ;│BBS Front-End System                └─────────────────────────────────────┤
  8. ;│(C)opyright 1992, 1993 Cairo Research Labs, All Rights Reserved           │
  9. ;└──────────────────────────────────────────────────────────────────────────┘
  10.  
  11. ;  Custom door information file support. BFE automatically recognizes
  12. ;  most door information file (drop file) formats, including DORINFO?.DEF,
  13. ;  EXITINFO.BBS, DOOR.SYS, SFDOORS.DAT, CALLINFO.BBS and CHAIN.TXT. However,
  14. ;  to permit BFE to operate on BBS systems that produce a different format
  15. ;  file, you may define a custom door information file format. A custom door
  16. ;  information file format is defined using the "CustomFileName" command,
  17. ;  followed by one or more lines beginning with the "CustomFileLine" command.
  18. ;
  19. ;  The "CustomFileName" option specifies the filename used to distinguish this
  20. ;  file format from other file formats. This filename should not include a
  21. ;  path. To specify the path where the door information file is located, use
  22. ;  the BBSDir setting, near the beginning of this file. If the filename of the
  23. ;  custom format is the same as that of one of the built-in formats, the custom
  24. ;  format will override the built-in format.
  25. ;
  26. ;  The actual format of the custom file is specified using a number of lines
  27. ;  that begin with the keyword "CustomFileLine". Each of these lines will
  28. ;  correspond to a single line in the door information file, with the option
  29. ;  following the "CustomFileLine" keyword specifying the information that can
  30. ;  be found on that line. This can be one of the following keywords:
  31. ;
  32. ;                    Ignore - Causes the next line in the door information
  33. ;                             file to be ignored. Use on lines for which none
  34. ;                             of the options below apply.
  35. ;                   ComPort - COM? port the modem is connected to
  36. ;                             (0 indicates local mode)
  37. ;                FossilPort - Fossil port number the modem is connected to
  38. ;                  ModemBPS - BPS rate at which to communicate with modem
  39. ;                             (0 or non-numerical value indicates local mode)
  40. ;                 LocalMode - 1, T or Y if door is operating in local mode
  41. ;                  UserName - Full name of the user
  42. ;             UserFirstName - First name(s) of the user
  43. ;              UserLastName - Last name of the user
  44. ;                     Alias - The user's psuedonym / handle
  45. ;                 HoursLeft - Hours user has left online
  46. ;               MinutesLeft - Minutes user has left online, or time left online
  47. ;                             in format hh:mm
  48. ;               SecondsLeft - Seconds user has left online, or time left online
  49. ;                             in format hh:mm:ss or format mm:ss
  50. ;                             (If more than one of the above time options are
  51. ;                             used, the user time left is taken to be the total
  52. ;                             of all of these values.)
  53. ;                      ANSI - 1, T, Y or G for ANSI graphics mode
  54. ;                    AVATAR - 1, T or Y for AVATAR graphics mode
  55. ;               PagePausing - 1, T or Y if user wishes a pause at end of screen
  56. ;              ScreenLength - Number of lines on user's screen
  57. ;            ScreenClearing - 1, T or Y if screen clearing mode is on
  58. ;                  Security - The user's security level / access level
  59. ;                      City - City the user is calling from
  60. ;                      Node - Node number user is connected to
  61. ;                 SysopName - Full name of the sysop
  62. ;            SysopFirstName - The sysop's first name(s)
  63. ;             SysopLastName - The sysop's last name
  64. ;                SystemName - Name of the BBS
  65. ;
  66. ;
  67.  
  68. ; This example is in the same format as the DORINFOx.DEF dropfile
  69.  
  70. CustomFileName    EXAMPLE.DEF           
  71. CustomFileLine    SystemName
  72. CustomFileLine    SysopFirstName
  73. CustomFileLine    SysopLastName
  74. CustomFileLine    ComPort
  75. CustomFileLine    ModemBPS
  76. CustomFileLine    Ignore
  77. CustomFileLine    UserFirstName
  78. CustomFileLine    UserLastName
  79. CustomFileLine    City
  80. CustomFileLine    ANSI
  81. CustomFileLine    Security
  82. CustomFileLine    MinutesLeft
  83. ;
  84.