home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / BBS / DOORS / LNOTE210.ZIP / LOGNOTE.DOC < prev    next >
Encoding:
Text File  |  1991-08-18  |  7.6 KB  |  182 lines

  1. ╒═════════════════════════════════════════════════════════════════════╕   P1
  2. │ LogNote Version 2.10    By Ray Martini    (c)1991 EDGEsoft Products │
  3. ╘═════════════════════════════════════════════════════════════════════╛
  4.  
  5. The New EDGE BBS! Lawrence, Mass. (508)688-1541 or Fidonet 1:324/118.0
  6.  
  7. Documentation written August 18, 1991
  8.  
  9. Program compiled using Microsoft (C) QuickBASIC 4.5 on August 15, 1991
  10. E-Door fossil routines (c)1991 Chris Beliveau EDGEsoft Products
  11.  
  12. EDGEsoft, The New EDGE BBS!, and The EDGE are all registered trademarks
  13. of Eastern Computer (c)1988-1991 All Rights Reserved in the US and Canada
  14.  
  15. ┌─────────────────────────────┐
  16. │          Overview           │
  17. └─────────────────────────────┘
  18.  
  19. Lognote is a small door utility that allows your BBS users to enter a logoff
  20. message to the next user. The message itself is set up to resemble the Adam
  21. Hudson style message base messages used in popular BBS programs such as
  22. QuickBBS, RemoteAccess, SuperBBS, BostonBBS, and a few others I have failed
  23. to mention here.
  24.  
  25. The door allows your users to choose the color of their message text and will
  26. also optionally allow them to download the door's activity log to view messages
  27. entered by others over a period of time determined by you the sysop.
  28.  
  29.                                                                           P2
  30.  
  31. ┌─────────────────────────────┐
  32. │       Getting Started       │
  33. └─────────────────────────────┘
  34.  
  35. In order to make the setup as painless as possible I have included in the archive
  36. the LNSETUP.EXE program. Simply run that and setup the paths and other information
  37. the door will need to operate.
  38.  
  39. NOTE! If you are currently using an earlier version of Lognote, you must delete
  40. the old LOGNOTE.CNF file and run LNSETUP. The control file name has changed to
  41. LOGNOTE.CTL and the program will now look for that name in the same directory as
  42. Lognote itself.
  43.  
  44. The setup utility will ask for the following information:
  45.  
  46.                    A. The full path to DORINFO1.DEF (DOOR.SYS coming soon!)
  47.                    B. Your BBS name
  48.                    C. Full path and fIlename to your ANSI output file
  49.                    D. Full path and filename to your ASCII output file
  50.                    E. Your choice of text color for ANSI output
  51.                    F. The prompt you would like to use after the message.
  52.                    G. Status bar foreground color
  53.                    H. Status bar background color
  54.                    I. Your name
  55.                    J. Your registration code
  56.  
  57. Also note that your path to DORINFO1.DEF must NOT have a trailing backslash!
  58.  
  59.  
  60.                                                                           P3
  61.  
  62. ┌─────────────────────────────┐
  63. │        Requirements         │
  64. └─────────────────────────────┘
  65.  
  66. Minimum requirements to run Lognote are an IBM PC/PCXT/PCAT/386/486 or clone
  67. system with at least 128k available memory. IBM or MS-DOS version 2.0 or higher.
  68. Any bulletin board software that supports/creates the DORINFO1.DEF door control
  69. file. A communications fossil must be present (X00 or BNU are reccomended)
  70.  
  71. ************************** I M P O R T A N T ! ***********************************
  72. YOU MUST have a DTR patched copy of BRUN45.EXE available to Lognote either in the
  73. same directory as Lognote or accessable via your DOS path statement. I have incl-
  74. uded a copy for your convenience.
  75. **********************************************************************************
  76.  
  77. Also you must have a copy of DSZ (c) Omen Technologies available in the same
  78. directory or in your DOS path in order for the new 'download activity' log func-
  79. tion to operate.
  80.  
  81. Add the following to your path statement in AUTOEXEC.BAT:
  82.  
  83.               set path = c:\[path to brun45.exe];c:\[path to dsz.com]
  84.  
  85.                                                                           P4
  86.  
  87. ┌─────────────────────────────┐
  88. │         Operations          │
  89. └─────────────────────────────┘
  90.  
  91. On a QuickBBS/RA system simply start up Lognote with the command LOGNOTE.EXE
  92. as a type 7 menu option. I use it as part of my logoff menu and display the note
  93. at the start of every new session. When the next user logs on the system, he/she
  94. sees the note prior to seeing the main menu.
  95.  
  96. There are several different ways to display the note to your users. First there
  97. are a couple filenames that QBBS/RA display automatically. There's WELCOME.A??
  98. which I reserve for my ANSI/ASCII welcome screen. There's NEWS.A?? which is a
  99. good possibility for Lognote. There's also GOODBYE.A?? which is a great way to
  100. display the note as the last screen your user sees before he/she logs off.
  101.  
  102. On my BBS I call the note, NOTE.A?? (original eh?) and display it as a forced
  103. menu option in my TOP.MNU prior to displaying the menu.
  104.  
  105.                                                                           P5
  106.  
  107. Here's how I display it:
  108.  
  109.  
  110.                              String: ;
  111.                              Optional Data: Note
  112.                              Type: 5
  113.                              Security: 5
  114.                              Key: 
  115.                              Foreground: 7
  116.                              Background: 7
  117.                              Menu Flags: A-------- B-------X C-------- D--------
  118.  
  119. Notice the B flag 8 set to on. After the note is displayed you then shut off
  120. the B8 flag to off so that users will only see the note once!
  121.  
  122.  
  123. ┌─────────────────────────────┐
  124. │ Using the Download Function │
  125. └─────────────────────────────┘
  126.                                                                           P6
  127.  
  128.  
  129. Lognote now creates a user activity log (LOGNOTE.LOG) to keep track of the notes
  130. that users have left. Keep in mind that this log will continue to grow and grow
  131. if you do not keep tabs on its size.
  132.  
  133. I found alot of new sysops in our area would use Lognote to advertise their new
  134. BBS and ask users to try them out. Then when I would want to try it myself, I
  135. didn't have a record and lost the number!
  136.  
  137. Before exiting the door, the user will be asked if they would like to download
  138. the user activity log. This will allow them as well to read many previous notes
  139. left be their fellow users. If they choose 'Y' then Lognote will shell to DSZ
  140. (c) Omen Technologies and start a ZModem download of the log. So be sure to have
  141. DSZ somewhere in your path so Lognote can find it!
  142.  
  143.  
  144. ┌─────────────────────────────┐
  145. │        Registration         │
  146. └─────────────────────────────┘
  147.  
  148. If you like Lognote and wish to continue to use it after a fair evaluation period,
  149. then please take the time to register it. Your registration code will be
  150. delivered to you via Fido Netmail or US mail whichever is easier.
  151.  
  152.  
  153.                                                                           P7
  154.  
  155. Please fill out the LOGNOTE.REG form included here and be sure to include your
  156. BBS name, number, and Fidonet address (if available). If you do not have a fido
  157. netmail address, please include your mailing address so that we may send you
  158. you registration code via the snail mail.
  159.  
  160. Registration is only $10.00 for Lognote and helps continued support of this and
  161. other EDGEsoft products. AND it's delivered directly to your BBS by either
  162. myself or Chris Beliveau (senior member of the programming team).
  163.  
  164.  
  165. ┌─────────────────────────────┐
  166. │         In Closing          │
  167. └─────────────────────────────┘
  168.  
  169. In closing let me say THANKS for using Lognote and hope you like the door.
  170.  
  171. For product support you may contact me Ray Martini at: BBS (508)688-1541
  172.                                                        Netmail 1:324/118.0
  173.  
  174. You may also contact Chris Beliveau at Netmail Address 1:324/118.1
  175.  
  176.  
  177. THANKS FOR USING EDGEsoft PRODUCTS!
  178.  
  179.  
  180.  
  181. EOF
  182.