home *** CD-ROM | disk | FTP | other *** search
- rem
- rem This file is started if the EchoDor program should exit with
- rem an errorlevel status of 3 and the user has selected [D]ownload.
- rem
- rem 5 parameters are passed to this file
- rem
- rem parameter 1 = the letter the user typed for the protocol
- rem 2 = the node number (may not be needed)
- rem 3 = the port number
- rem 4 = the baud rate
- rem 5 = the name of the mail file
- rem
- rem use these parameters to call the correct protocol
- rem
- rem -----------------------------------------------------------------
- rem
- rem
- rem Now we'll check the letter the user typed in and call the protocol
- rem
- if %1 == X dsz port %3 sx %5
- if %1 == Y dsz port %3 sb %5
- if %1 == Z dsz port %3 sz %5
- rem
- rem Now we'll erase the downloaded mail file
- rem
- erase %5
- rem
- rem Finally, lets get EchoDor going again -- you'd have to put the
- rem batch file name needed here. Be sure that you include the /R
- rem option to allow EchoDor to begin in "Restart" mode.
- rem
- EchoDoor %2 /R
-