home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR10 / ACE175.ZIP / ACE.CTL < prev    next >
Text File  |  1993-11-01  |  14KB  |  563 lines

  1.  
  2. ;                         AceComm & Utilities (Tm)
  3. ;                              Version 1.75
  4. ;
  5. ;                       AceComm Ascii Control File
  6. ;                  Use ACTL.EXE to compile into ACE.PRM
  7. ;
  8. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  9. ;              ACE.CTL is
  10. ;                          A  Plain  Ascii  Text  File...
  11. ;                          Use  a  Plain  Ascii  Text  Editor...
  12. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  13. ;;; ============
  14. ;;;  Port Setup 
  15. ;;; ============
  16. Port 1
  17. ;   o Connect speeds such as 12000, 14400 etc. are not actual
  18. ;     data rates that the UART (serial port)  can be set to.
  19. ;   o Setting the Baud rate to 19200 for a 9600 baud modem will
  20. ;     allow better performance when down loading data.
  21. ;   o Locking the port means selecting a baud rate higher than the
  22. ;     highest connect speed the modem is capable of, and telling the
  23. ;     communications software to lock it there.
  24. ;   o Modems capable of connecting at 9600 and above can usually be
  25. ;     used with a "Locked port"
  26. ;   o Using a locked port requires your modem be in full handshake
  27. ;     mode.
  28. Baud 19200
  29. LockBaud 
  30. RBuff 8192
  31. RBuff 256
  32. FIFO_Trigger 14
  33. ;TX 
  34. ;Chain_IRQ 
  35. CTS/RTS 
  36. XON/XOFF 
  37. ;Strip_HighBIT 
  38. ;DropDTR 
  39. ;;; =================
  40. ;;;  Dialing Options 
  41. ;;; =================
  42. InterByteDelay 1
  43. DialTimeout 60
  44. TimeBetweenRedial 1
  45. ;DTR_BetweenRedial 
  46. DialConnectBell 1
  47. ;DCD_VerifyConnect 
  48. ;;; ===========================
  49. ;;;  Internal Protocol Options 
  50. ;;; ===========================
  51. AutoEngage 
  52. FileResume 
  53. ;XfrTimeSlice 
  54. XfrBell 
  55. ;;; =================
  56. ;;;  General Options 
  57. ;;; =================
  58. StatusLine 
  59. TopbarMenuOnline 
  60. TopbarMenu 
  61. LogFile 
  62. ;LogModemRes 
  63. AutoSave 
  64. ;SnowCheck 
  65. ScrnBlank 4
  66. SwapSpawn 
  67. SwapShell 
  68. EnhancedKBD 
  69. KeyRef 
  70. ;MailDialer 
  71. ScrlBakBuf 64
  72. VideoRows 0
  73. ;;; =================
  74. ;;;  Pointer Options 
  75. ;;; =================
  76. MouseX 6
  77. MouseY 4
  78. MouseDetect 
  79. ;;; ======================
  80. ;;;  Colors, Menu Options 
  81. ;;; ======================
  82. BorderAttr 49
  83. BorderType 0
  84. LeftFieldAttr 49
  85. RightFieldAttr 63
  86. DisplayATTR 48
  87. TitleAttr 48
  88. ITitleAttr 60
  89. SelectorAttr 48
  90. ;BurstMenu 
  91. ;ChatterMenu 
  92. ;WhistleMenu 
  93. TermColor 7
  94. CurtainColor 59
  95. CurtainChar 176
  96. HelpLineColor 112
  97. HelpScreenColor 7
  98. HelpScreenTitleColor 26
  99. HelpScreenKeyWordColor 122
  100. HelpScreenSelectorColor 30
  101. HelpScreenLastErrorColor 28
  102. FonBorderAttr 119
  103. FonBorderType 0
  104. FonLeftFieldAttr 113
  105. FonRightFieldAttr 63
  106. FonDisplayAttr 48
  107. FonTitleAttr 112
  108. FonITitleAttr 60
  109. FonSelectorAttr 112
  110. ;FonBurstMenu 
  111. ;FonChatterMenu 
  112. ;FonWhistleMenu 
  113. DialBorderAttr 1
  114. DialBorderType 0
  115. DialLeftFieldAttr 9
  116. DialRightFieldAttr 1
  117. DialDisplayAttr 14
  118. DialTitleAttr 48
  119. DialITitleAttr 12
  120. DialSelectorAttr 3
  121. ;DialBurstMenu 
  122. ;DialChatterMenu 
  123. ;DialWhistleMenu 
  124. ;;; =================
  125. ;;;  Sub Directories 
  126. ;;; =================
  127. FonDir    fon
  128. Captures  cap
  129. Scripts   scr
  130. TermKey   kts
  131. DnldDir   fil
  132. Nodelist  mail
  133. MailIn    mail
  134. MailOut   mail
  135. ;;; =============
  136. ;;;  Modem Setup 
  137. ;;; =============
  138. ;
  139. ; - Modem command strings
  140. ;   Note: Mdm commands are automaticaly appended with
  141. ;         Mdm_Cmd_Line_Terminator at time the command string
  142. ;         is sent to the modem.
  143. ;         The `^` character is recognized as a Control character.
  144. ;         The byte following a `^` will become (byte - 64d)
  145. ;   Examples:
  146. ;             ^M translates to CR
  147. ;             ^A translates to 1, ^M translates to 13 (CR_CHAR)
  148. ;             ~ translates to a 250 milisecond delay
  149. Mdm_Init ATZ^M~~~~ATES7=35
  150. Mdm_Dial_Prefix ATEQ0X4DT
  151. Mdm_Dial_Sufix 
  152. Mdm_Answer ATA
  153. Mdm_Hangup +++~~~~~ATH0
  154. Mdm_OffHook ATH1
  155. Mdm_Abort ^M
  156. Mdm_Reset ATZ
  157. Mdm_Echo ATE1
  158. Mdm_Host_Init ATE
  159. ;
  160. ; Mdm_Cmd_Line_Terminator is automaticaly appended to all modem commands
  161. Mdm_Cmd_Line_Terminator ^M
  162. ;
  163. ;
  164. ; - Modem Responce Strings
  165. ;   Note: The following strings are probably case sensitive
  166. ;                                   (see your modem manual)
  167. Mdm_Res_OK OK^M
  168. Mdm_Res_Ring RING^M
  169. Mdm_Res_NoCarrier NO CARRIER
  170. Mdm_Res_Error ERROR
  171. Mdm_Res_NoDialTone NO DIAL TONE
  172. Mdm_Res_Busy BUSY
  173. Mdm_Res_NoAnswer NO ANSWER
  174. Mdm_Res_Ringing RINGING^M
  175. Mdm_Res_Voice VOICE
  176. ;
  177. ; - The following connect strings may be tailored any way you wish.
  178. ;   No particular order, refer to your modem manual for case and format.
  179. ; Note: ACECOMM will detect a carrier anyway, the connect strings
  180. ;       may speed things up, and will also allow automatic baud adjustments
  181. ;       when connecting at a speed not dialed out on, and port not locked.
  182. ;       With Lockbaud SET, the UART baud rate remains fixed, translation
  183. ;       is made by your modem.
  184. Mdm_Res_Connect_a CONNECT 1200
  185. Mdm_Res_Connect_b CONNECT 2400
  186. Mdm_Res_Connect_c CONNECT 2400/ARQ
  187. Mdm_Res_Connect_d CONNECT 4800
  188. Mdm_Res_Connect_e CONNECT 9600
  189. Mdm_Res_Connect_f CONNECT 9600/ARQ
  190. Mdm_Res_Connect_g CONNECT 14400/ARQ
  191. Mdm_Res_Connect_h CONNECT 16800/ARQ
  192. Mdm_Res_Connect_i CONNECT 19200
  193. Mdm_Res_Connect_j CONNECT 38400
  194. Mdm_Res_Connect_k CONNECT 57600
  195. Mdm_Res_Connect_l 
  196. Mdm_Res_Connect_m CARRIER 9600
  197. Mdm_Res_Connect_n CARRIER 12000
  198. Mdm_Res_Connect_o CARRIER 14400
  199. Mdm_Res_Connect_p CARRIER 16800
  200. Mdm_Res_Connect_q CARRIER 19200
  201. Mdm_Res_Connect_r CARRIER 28800
  202. Mdm_Res_Connect_s CARRIER 38400
  203. ;;; ========================
  204. ;;;  Interactive EMSI Setup 
  205. ;;; ========================
  206. IEMSI_Name
  207. IEMSI_Alias AceComm
  208. IEMSI_Location Phoenix, AZ  USA
  209. IEMSI_Data_Pnum (602) 846-2940
  210. IEMSI_Voice_Pnum, 
  211. IEMSI_Password
  212. IEMSI_CRTDEF ANSI,23,80,0
  213. IEMSI_Protocols Zap,ZMO
  214. IEMSI_Capabilities CHT,TAB,ASCII8
  215. IEMSI_Requests 
  216. ;;; ============
  217. ;;;  EMSI Setup 
  218. ;;; ============
  219. EMSI_System_Address 1:114/35
  220. EMSI_System_Name AceComm Support
  221. EMSI_City Phoenix, AZ
  222. EMSI_Phone_Number (602) 846-2940
  223. EMSI_Baud_Rate 19200
  224. EMSI_Flags v32
  225. PassWord0 
  226. PassWord1 
  227. PassWord2 
  228. PassWord3 
  229. PassWord4 
  230. DialTrans0
  231. DialTrans1 
  232. DialTrans2 
  233. DialTrans3 
  234. DialTrans4 
  235. BossAddress 1:114/35
  236. BossName Boss Node
  237. BossPhone 846-2940
  238. BossPwd mailman
  239. BossBaud 19200
  240. ;;; ========================================================
  241. ;;;  Auto Engage Sequence Triggers, Associated Macro Stacks 
  242. ;;; ========================================================
  243. PreAutoM 
  244. PostAutoM 
  245. AutoDnld0 rz^M**^X
  246. AutoDnld1 HS*^B
  247. AutoDnld2 ^H ^H ^H ^H
  248. AutoDnld3 MPt ^V^H
  249. AutoDnld4 
  250. AutoDnld5 
  251. AutoDnld6 
  252. AutoDnld7 
  253. AutoDnld8 **EMSI_REQA77E
  254. AutoDnld9 **EMSI_IRQ8E08
  255. AutoMacro0 <RecvZmo>
  256. AutoMacro1 <RunProgram>hslink -P1 <SendStr>^M
  257. AutoMacro2 <RunProgram>bimodem bimodem.pth <SendStr>^M
  258. AutoMacro3 <RunProgram>MPT R <SendStr> ^M
  259. AutoMacro4 
  260. AutoMacro5 
  261. AutoMacro6 
  262. AutoMacro7 
  263. AutoMacro8 <SendEMSI_CLI>
  264. AutoMacro9 <SendEMSI_ICI>
  265. ;;; ========================================================
  266. ;;;  Auto Log On Sequence Triggers, Associated Macro Stacks 
  267. ;;; ========================================================
  268. AutoLogOn0 is your name:
  269. AutoLogOn1 Your FIRST name:
  270. AutoLogOn2 Host Name:
  271. AutoLogOn3 first name ?
  272. AutoLogOn4 and LAST name:
  273. AutoLogOn5 last name?
  274. AutoLogOn6 first name?
  275. AutoLogOn7 
  276. AutoLogOn8 
  277. AutoLogOn9 
  278. AutoLMacro0 <SendStr>[USER_NAME]^M~Y^M~[FON_REC_PWD]^M
  279. AutoLMacro1 <SendStr>[USER_NAME]^MY^M~[FON_REC_PWD]^M
  280. AutoLMacro2 <SendStr>CIS^M~~~~75120,3306^M~~~~~~[FON_REC_PWD]^M
  281. AutoLMacro3 <SendStr>[USER_NAME]^MY^M[FON_REC_PWD]^M
  282. AutoLMacro4 <SendStr>[USER_NAME]^M~^M~[FON_REC_PWD]^M
  283. AutoLMacro5 <SendStr>[USER_NAME]^M~~[FON_REC_PWD]^M
  284. AutoLMacro6 <SendStr>[USER_NAME]^M~~[FON_REC_PWD]^M
  285. AutoLMacro7 
  286. AutoLMacro8 
  287. AutoLMacro9 
  288. ;;; ========================================================
  289. ;;;  Event Schedules, Associated Macro Stacks 
  290. ;;; ========================================================
  291. ;;    Sample Event an associated macro stack:
  292. ;; (Allow a mail event from midnight to 3am)
  293. ; Schedule_0    0:0-3:0,MAIL
  294. ;; (The macro stack will be run at beginning of event)
  295. ; SchedMacro_0  <ChgDir>c:\mail <RunProgram>QM <ChgDir>[DIR_START]
  296. Schedule_0 00:01-00:03,Mail
  297. Schedule_1 8:30-9:0,Mail,Host
  298. Schedule_2 
  299. Schedule_3 
  300. Schedule_4 
  301. SchedMacro_0 <ChgDir>c:\mail\qm <RunProgram>QM scan <ChgDir>[DIR_START]
  302. SchedMacro_1 <ChgDir>c:\mail\qm <RunProgram>QM toss <ChgDir>[DIR_START]
  303. SchedMacro_2 
  304. SchedMacro_3 
  305. SchedMacro_4 
  306. ;;; =========================================================
  307. ;;;  Auto Answer Connect Sub-string, Associated Macro Stacks 
  308. ;;; =========================================================
  309. ;;    Sub_string  - String to match in modem Answer/Connect string
  310. ;;    Macro stack - Macro stack to process on Answer/Connect
  311. ;;    Sample Sub-string and associated macro stack:
  312. ;AutoAnsSub-str_1 CONNECT
  313. ;AutoAnsMac_1 <RunProgram>TRIBBS port %P baud %B
  314. ;;    Sample Sub-string and associated macro stack:
  315. ;AutoAnsSub-str_2 FAX
  316. ;AutoAnsMac_2 <RunProgram>BGFAX /FAX %P Q
  317. AutoAnsSub-str_1 CONNECT
  318. AutoAnsMac_1 <RunProg>BBS port %P speed %B
  319. AutoAnsSub-str_2 FAX
  320. AutoAnsMac_2 <RunProg>BGFAX /FAX %P Z
  321. AutoAnsSub-str_3 
  322. AutoAnsMac_3 
  323. DefaultMac <RunProg>BGFAX /FAX %P Z
  324. ;;; ===================
  325. ;;;  Mondo Menus (Tm)
  326. ;;; ===================
  327. Mondo_1_Title CIS Functions
  328. Mondo1_desc_a CIS Forums Script
  329. Mondo1_macro_a <RunScript>cisforum.scr
  330. Mondo1_desc_b CIS Bill Script
  331. Mondo1_macro_b <RunScript>cisbill.scr
  332. Mondo1_desc_c Compose Message
  333. Mondo1_macro_c <SendAscii>%P
  334. Mondo1_desc_d IBMPRO Forum 2 File
  335. Mondo1_macro_d <SendStr>go IbmPro^M <OpenCapture>ibmpro <SendStr>~~~~~~~~Read New^M
  336. Mondo1_desc_e IBMCOM Forum 2 File
  337. Mondo1_macro_e <SendStr>go IbmCom^M <OpenCapture>ibmcom <SendStr>~~~~~~~~Read New^M
  338. Mondo1_desc_f 
  339. Mondo1_macro_f 
  340. Mondo1_desc_g CIS Msg Reference
  341. Mondo1_macro_g <RunProg>List cis_msg.ref
  342. Mondo_2_Title OffLine Reader
  343. Mondo2_desc_a Read Off-line Mail
  344. Mondo2_macro_a <ChgDir>\mail\reader <RunProg>BlueWave <ChgDir>[DIR_START]
  345. Mondo2_desc_b Run Mail Script
  346. Mondo2_macro_b <RunScript>offline.scr
  347. Mondo2_desc_c 
  348. Mondo2_macro_c 
  349. Mondo2_desc_d 
  350. Mondo2_macro_d 
  351. Mondo2_desc_e 
  352. Mondo2_macro_e 
  353. Mondo2_desc_f 
  354. Mondo2_macro_f 
  355. Mondo2_desc_g Delete old .QWK
  356. Mondo2_macro_g <FileDel>c:\mail\114-35.qwk
  357. Mondo_3_Title Mondo Menu #3
  358. Mondo3_desc_a 
  359. Mondo3_macro_a 
  360. Mondo3_desc_b 
  361. Mondo3_macro_b 
  362. Mondo3_desc_c 
  363. Mondo3_macro_c 
  364. Mondo3_desc_d 
  365. Mondo3_macro_d 
  366. Mondo3_desc_e 
  367. Mondo3_macro_e 
  368. Mondo3_desc_f 
  369. Mondo3_macro_f 
  370. Mondo3_desc_g 
  371. Mondo3_macro_g 
  372. Mondo_4_Title Mondo Menu #4
  373. Mondo4_desc_a 
  374. Mondo4_macro_a 
  375. Mondo4_desc_b 
  376. Mondo4_macro_b 
  377. Mondo4_desc_c 
  378. Mondo4_macro_c 
  379. Mondo4_desc_d 
  380. Mondo4_macro_d 
  381. Mondo4_desc_e 
  382. Mondo4_macro_e 
  383. Mondo4_desc_f 
  384. Mondo4_macro_f 
  385. Mondo4_desc_g 
  386. Mondo4_macro_g 
  387. Mondo_5_Title Mondo Menu #5
  388. Mondo5_desc_a 
  389. Mondo5_macro_a 
  390. Mondo5_desc_b 
  391. Mondo5_macro_b 
  392. Mondo5_desc_c 
  393. Mondo5_macro_c 
  394. Mondo5_desc_d 
  395. Mondo5_macro_d 
  396. Mondo5_desc_e 
  397. Mondo5_macro_e 
  398. Mondo5_desc_f 
  399. Mondo5_macro_f 
  400. Mondo5_desc_g 
  401. Mondo5_macro_g 
  402. ;;; ==============
  403. ;;;  ALT A-Z, 1-0 
  404. ;;; ==============
  405. ;
  406. ; AceComm`s MACRO driven keyboard provides for easy key re-def
  407. ;
  408. ; You may define the keys any way you like, should you forget to
  409. ; assign an exit key, CTRL-BREAK from terminal mode will force the
  410. ; <EndACEComm> MACRO to be executed, CTRL-BREAK is an acceptable
  411. ; key-combo permanantly assigned to the <EndACEComm> MACRO
  412. ;
  413. ; Functions which end with `_` are not suited for scripts as they
  414. ; require local keyboard input.
  415. ALT-A <AutoScrGen_>
  416. ALT-B <BackBuffer_>
  417. ALT-C <CaptureFile_>
  418. ALT-D <FonListDialer_>
  419. ALT-E <AutoAnswer> ON
  420. ALT-F <FileLister_>[DIR_DNLDS]
  421. ALT-G <FileRequest_>
  422. ALT-H <MdmHangUp_> 
  423. ALT-I 
  424. ALT-J <CommandShell_>
  425. ALT-K 
  426. ALT-L <RunProg> list
  427. ALT-M <SendStr>ath1^M <ChgDir>mail\ged <RunProg>GOLDED <ChgDir>[DIR_START]
  428. ALT-N <ChgDir>c:\mail\qm <RunProg>QM toss <ChgDir>[DIR_START]
  429. ALT-O <PrmDataMenus_>
  430. ALT-P <PrmDataMenus_>
  431. ALT-Q 
  432. ALT-R <RunScript_>
  433. ALT-S <ScrnSnapshot_>
  434. ALT-T <ScrnTag_>
  435. ALT-U 
  436. ALT-V <ViewKeyCombos_>
  437. ALT-W 
  438. ALT-X <EndAceComm> 0
  439. ALT-Y <AutoAnswer> Off
  440. ALT-Z <ClearWindow>
  441. ALT-1 <SendZmo> %PF
  442. ALT-2 <RunProg>DSZ sz %PF %WK <SendStr> ^M
  443. ALT-3 <SendAscii> %PF
  444. ALT-4 <RunProg>BiPath 
  445. ALT-5 
  446. ALT-6 <RunProg> dsz rz -rm
  447. ALT-7 <RunProg>bimodem bimodem.pth <SendStr>^M
  448. ALT-8 
  449. ALT-9 
  450. ALT-10 
  451. ALT-- 
  452. ALT-= <DoorWayMode>
  453. ;;; ==========
  454. ;;;  CTRL A-Z 
  455. ;;; ==========
  456. CTRL-A 
  457. CTRL-B 
  458. CTRL-C 
  459. CTRL-D 
  460. CTRL-E 
  461. CTRL-F 
  462. CTRL-G 
  463. CTRL-H 
  464. CTRL-I 
  465. CTRL-J 
  466. CTRL-K 
  467. CTRL-L 
  468. CTRL-M 
  469. CTRL-N 
  470. CTRL-O 
  471. CTRL-P 
  472. CTRL-Q 
  473. CTRL-R 
  474. CTRL-S 
  475. CTRL-T 
  476. CTRL-U 
  477. CTRL-V 
  478. CTRL-W 
  479. CTRL-X 
  480. CTRL-Y 
  481. CTRL-Z 
  482. CTRL-2 
  483. CTRL-6 
  484. CTRL-- 
  485. CTRL-BkSp 
  486. CTRL-[ 
  487. CTRL-] 
  488. CTRL-Enter 
  489. CTRL-\ 
  490. CTRL-PrtSc 
  491. CTRL-Home 
  492. CTRL-PgUp 
  493. CTRL-Left 
  494. CTRL-Right 
  495. CTRL-End 
  496. CTRL-PgDn 
  497. ;;; ============
  498. ;;;  Other Keys 
  499. ;;; ============
  500. Home 
  501. Up 
  502. PgUp <SProtocols_>
  503. GreyMinus 
  504. Left 
  505. Right 
  506. GreyPlus 
  507. End 
  508. Down 
  509. PgDn <RProtocols_>
  510. Ins 
  511. Del 
  512. ;;; =========
  513. ;;;  Fn Keys 
  514. ;;; =========
  515. F1 <SendStr>[USER_NAME]^M
  516. F2 <SendStr>[FON_REC_PWD]^M
  517. F3 <SendStr>[LOCATION]^M
  518. F4 <SendStr>[VOICE_PNUM]^M
  519. F5 <SendStr>[PASSWORD]^M
  520. F6 <SetDTR> ON
  521. F7 <SendAscii> %PF
  522. F8 <Mondos>
  523. F9 <HelpMenu>
  524. F10 <TopBar>
  525. F11 <Mondo1>
  526. F12 <SendStr>75120,3306^M
  527. SHIFT-F1 <SENDSTR>1_114-35.ARJ
  528. SHIFT-F2 
  529. SHIFT-F3 
  530. SHIFT-F4 
  531. SHIFT-F5 
  532. SHIFT-F6 
  533. SHIFT-F7 
  534. SHIFT-F8 
  535. SHIFT-F9 
  536. SHIFT-F10 
  537. SHIFT-F11 
  538. SHIFT-F12 
  539. CTRL-F1 <LocalEcho> ON <DIALNUM> 846-2940 <LocalEcho> OFF
  540. CTRL-F2 <SetDTR> Off <Delay> 5 <SetDTR> ON
  541. CTRL-F3 
  542. CTRL-F4 
  543. CTRL-F5 
  544. CTRL-F6 
  545. CTRL-F7 
  546. CTRL-F8 
  547. CTRL-F9 
  548. CTRL-F10 
  549. CTRL-F11 
  550. CTRL-F12 
  551. ALT-F1 <RunProg> list
  552. ALT-F2 <RunProg> bb
  553. ALT-F3 <RunProg> QEDIT %PF
  554. ALT-F4 <RunProg> COMMAND /C dir /w %WK
  555. ALT-F5 
  556. ALT-F6 
  557. ALT-F7 
  558. ALT-F8 
  559. ALT-F9 
  560. ALT-F10 
  561. ALT-F11 
  562. ALT-F12 
  563.