home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
RBBS in a Box Volume 1 #2
/
RBBS_vol1_no2.iso
/
001z
/
source.scr
< prev
next >
Wrap
Text File
|
1989-03-01
|
2KB
|
77 lines
;LINKED SCRIPT FOR THE SOURCE VIA TELENET;
;LINK IT TO YOUR QMODEM PHONE DIRECTORY ENTRY FOR ANY
;TELENET PHONE NUMBER(S).
;USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
; [1] Your Source connect# for Telenet
; [2] Your Source account#
; [3] Your Source password
; [4] Any Source command(s)
;COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
;Display message on-screen only
NOTE ** LOGON TO THE SOURCE VIA TELENET **
;The next line says to WAITFOR 60 seconds before halting script
TIMEOUT 60
;Set key parameters for The Source
;TURNON XON/XOFF
TURNOFF ECHO LINEFEED
;Call Telenet;
;phone number, bps, comm parameters depend on directory entry #
;for local #s, contact Telenet at 800-336-0437 or 703-442-2200
;Telenet 'logon' is two CRs
SEND "^M^M"
;Wait for Telenet to request terminal type
WAITFOR "TERMINAL="
;Reply with D1 (all other terminal types add useless nulls
SEND "D1^M"
;Wait for Telenet to request host service ID
WAITFOR "@"
;Reply with your Source connect ID for Telenet
;[1] Refer to your Source new member kit for exact ID
SEND "C 301162^M"
;Wait for The Source to request your logon
WAITFOR "Connected to THE SOURCE"
WAITFOR "> "
;[2] Send your Source Account# followed by CR
SEND "ID usrid^M"
;Wait for The Source to request your password
WAITFOR "Password?"
;[3] Send your password; include control characters if required
SEND "password^M"
;Wait for The Source to Request your input
WAITFOR "Enter item number or Help: "
;Eliminate Menus, go to the Source Command Mode
;SEND "Q{"
;Wait for The Source to Request your input
;WAITFOR "-> "
;Prevent CHAT if you wish to avoid interruptions
;SEND "CHAT -OFF{"
;Wait for The Source to Request your input
;WAITFOR "-> "
;[4] Send any Source command, such as:
; MAIL READ UNREAD{ or MENU{ or POST SCAN IBM{
;SEND "MAIL READ{"
;Discontinue script processing; return control to keyboard
RETURN