home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR11 / BGFAXB05.ZIP / FBBS.BAT < prev    next >
DOS Batch File  |  1993-08-25  |  595b  |  22 lines

  1. @echo off
  2. rem       this is an example batch file for frontend mode operation
  3. bgfax
  4. if errorlevel 55 maint1
  5. if errorlevel 50 maint2
  6. if errorlevel 12 maint3
  7. if errorlevel 4 goto faxrcvd
  8. if errorlevel 3 goto datacall
  9. if errorlevel 2 goto datacall
  10. if errorlevel 1 bbs
  11. goto end
  12. :faxrcvd
  13.   rem  you can put a printing batch here if you want
  14.   %bgfax%\doprint
  15. :datacall
  16.   rem  errorlevel 2=data,  errorelvel 3=local logon
  17.   rem  the following line executes the DOBBS.BAT file created by BGFAX
  18.   rem  which runs EXEBBS.BAT which should load your bbs software
  19.   %bgfax%\dobbs
  20. :end
  21.  
  22.