home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Aktief 1995 #3 / CDA3.iso / comm / ace186b.zip / ACE.CTL < prev    next >
Text File  |  1994-04-07  |  16KB  |  633 lines

  1. ;                         AceComm & Utilities (Tm)
  2. ;                              Version 1.85
  3. ;
  4. ;                       AceComm Ascii Control File
  5. ;                  Use ACTL.EXE to compile into ACE.PRM
  6. ;
  7. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  8. ;              ACE.CTL is
  9. ;                          A  Plain  Ascii  Text  File...
  10. ;                          Use  a  Plain  Ascii  Text  Editor...
  11. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  12. ;;; ============
  13. ;;;  Port Setup 
  14. ;;; ============
  15. Port 1
  16. ;   o Connect speeds such as 12000, 14400 etc. are not actual
  17. ;     data rates that the UART (serial port)  can be set to.
  18. ;   o Setting the Baud rate to 19200 for a 9600 baud modem will
  19. ;     allow better performance when down loading data.
  20. ;   o Locking the port means selecting a baud rate higher than the
  21. ;     highest connect speed the modem is capable of, and telling the
  22. ;     communications software to lock it there.
  23. ;   o Modems capable of connecting at 9600 and above can usually be
  24. ;     used with a "Locked port"
  25. ;   o Using a locked port requires your modem be in full handshake
  26. ;     mode.
  27. Baud 19200
  28. LockBaud 
  29. RBuff 8192
  30. RBuff 256
  31. FIFO_Trigger 8
  32. ;TX 
  33. ;Chain_IRQ 
  34. CTS/RTS 
  35. ;XON/XOFF 
  36. ;Strip_HighBIT 
  37. DropDTR 
  38. ;;; =================
  39. ;;;  Dialing Options 
  40. ;;; =================
  41. InterByteDelay 1
  42. DialTimeout 70
  43. TimeBetweenRedial 1
  44. ;DTR_BetweenRedial 
  45. DialConnectBell 1
  46. ;DCD_VerifyConnect 
  47. ;;; ===========================
  48. ;;;  Internal Protocol Options 
  49. ;;; ===========================
  50. AutoEngage 
  51. FileResume 
  52. ;XfrTimeSlice 
  53. XfrBell 
  54. ;;; =================
  55. ;;;  General Options 
  56. ;;; =================
  57. StatusLine 
  58. LogFile 
  59. ;LogModemRes 
  60. AutoSave 
  61. ;SnowCheck 
  62. ScrnBlank 3
  63. SwapSpawn 
  64. SwapShell 
  65. EnhancedKBD 
  66. KeyRef 1
  67. ScrlBakBuf 64
  68. VideoRows 0
  69. ;;; =================
  70. ;;;  Pointer Options 
  71. ;;; =================
  72. MouseDetect 
  73. ;;; ======================
  74. ;;;  Colors, Menu Options 
  75. ;;; ======================
  76. BorderAttr 7
  77. BorderType 1
  78. LeftFieldAttr 3
  79. RightFieldAttr 7
  80. DisplayATTR 48
  81. TitleAttr 120
  82. ITitleAttr 10
  83. SelectorAttr 2
  84. ;BurstMenu 
  85. ;ChatterMenu 
  86. ;WhistleMenu 
  87. TermColor 7
  88. CurtainColor 22
  89. CurtainChar 176
  90. HelpLineColor 112
  91. HelpScreenColor 7
  92. HelpScreenTitleColor 26
  93. HelpScreenKeyWordColor 122
  94. HelpScreenSelectorColor 30
  95. HelpScreenLastErrorColor 28
  96. FonBorderAttr 16
  97. FonBorderType 2
  98. FonLeftFieldAttr 31
  99. FonRightFieldAttr 11
  100. FonDisplayAttr 48
  101. FonTitleAttr 27
  102. FonITitleAttr 26
  103. FonSelectorAttr 30
  104. ;FonBurstMenu 
  105. ;FonChatterMenu 
  106. ;FonWhistleMenu 
  107. DialBorderAttr 51
  108. DialBorderType 2
  109. DialLeftFieldAttr 63
  110. DialRightFieldAttr 62
  111. DialDisplayAttr 48
  112. DialTitleAttr 62
  113. DialITitleAttr 58
  114. DialSelectorAttr 59
  115. ;DialBurstMenu 
  116. ;DialChatterMenu 
  117. ;DialWhistleMenu 
  118. ;;; =================
  119. ;;;  Sub Directories 
  120. ;;; =================
  121. FonDir   FON
  122. Captures CAP
  123. Scripts  SCR
  124. TermKey  KTS
  125. DnldDir  FILES
  126. Nodelist
  127. MailIn   MAIL_IN
  128. MailOut  MAIL_OUT
  129. ;;; =============
  130. ;;;  Modem Setup 
  131. ;;; =============
  132. ;
  133. ; - Modem command strings
  134. ;   Note: Mdm commands are automaticaly appended with
  135. ;         Mdm_Cmd_Line_Terminator at time the command string
  136. ;         is sent to the modem.
  137. ;         The `^` character is recognized as a Control character.
  138. ;         The byte following a `^` will become (byte - 64d)
  139. ;   Examples:
  140. ;             ^M translates to CR
  141. ;             ^A translates to 1, ^M translates to 13 (CR_CHAR)
  142. ;             ~ translates to  1 second delay
  143. ;             ` translates to  5 second delay
  144. ;             !, @, #, and $ are dial strin modifiers.
  145. Mdm_Init_A ATZ^M~ATE0&C1&D2
  146. Mdm_Init_B ATS38=0S95=3H0
  147. Mdm_Init_C 
  148. Mdm_Dial_Prefix ATEQ0X4DT
  149. Mdm_Dial_Sufix 
  150. Mdm_Answer ATA
  151. Mdm_Hangup +++~ATH0
  152. Mdm_OffHook ATH1
  153. Mdm_Abort ^M
  154. Mdm_Reset ATZ
  155. Mdm_Echo ATE1
  156. Mdm_Host_Init_A  AT+FAA=1
  157. Mdm_Host_Init_B 
  158. Mdm_Host_Init_C 
  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 
  185. Mdm_Res_Connect_B CARRIER
  186. Mdm_Res_Connect_C FAX
  187. ;;; ========================
  188. ;;;  Interactive EMSI Setup 
  189. ;;; ========================
  190. ;
  191. ; IEMSI handshake data is an Auto Log-In standard used with BBS
  192. ; software.
  193. ;
  194. IEMSI_Name
  195. IEMSI_Alias MGP Software/(AceComm)
  196. IEMSI_Location Phoenix, AZ  USA
  197. IEMSI_Data_Pnum (602) 846-2940
  198. IEMSI_Voice_Pnum, 
  199. IEMSI_Password ace/user
  200. IEMSI_CRTDEF ANSI,24,80,0
  201. IEMSI_Protocols Zap,ZMO
  202. IEMSI_Capabilities CHT,TAB,ASCII8
  203. IEMSI_Requests 
  204. ;;; ============
  205. ;;;  EMSI Setup 
  206. ;;; ============
  207. ;
  208. ; EMSI handshake data is the current mailer session protocol.
  209. ;
  210. ;
  211. EMSI_System_Address 1:114/35
  212. EMSI_Acka_A 123/123
  213. EMSI_Acka_B 
  214. EMSI_System_Name AceComm Software Support
  215. EMSI_Sysop_Name Michael G Phelps
  216. EMSI_City Phoenix, AZ
  217. EMSI_Phone_Number (602) 846-2940
  218. EMSI_Baud_Rate 38400
  219. EMSI_Flags V32b,CM,XA
  220. PassWord_A 1:114/12 mailman
  221. PassWord_B 1:114/440 holdmail
  222. PassWord_C 1:124/4115 mailman
  223. PassWord_D 
  224. PassWord_E 
  225. BossAddress_A 1:114/35
  226. BossName_A AceComm Suport BBS
  227. BossPhone_A 1-602-846-2940
  228. BossPwd_A password
  229. BossBaud_A 38400
  230. BossAddress_B
  231. BossName_B
  232. BossPhone_B
  233. BossPwd_B 
  234. BossBaud_B 
  235. BossAddress_C 
  236. BossName_C 
  237. BossPhone_C 
  238. BossPwd_C 
  239. BossBaud_C 
  240. BossAddress_D 
  241. BossName_D 
  242. BossPhone_D 
  243. BossPwd_D 
  244. BossBaud_D 
  245. BossAddress_E 
  246. BossName_E
  247. BossPhone_E
  248. BossPwd_E
  249. BossBaud_E 
  250. AfterMailMacro <ChgDir>D:\MAIL <RunProg>QM toss <ChgDir>[DIR_START]
  251. ProgramStartMacro <DispStr>^M[BWhi][Blu] Install on port %P  ^M^J Initializing Modem ^M^J[BBla]
  252. MailOnlyMacro <HostEcho>ON <DispStr>^MAceComm will be available later tonight <HostEcho>Off
  253. LongDistanceDef_A 1-
  254. DialModifier_A *70
  255. DialModifier_B 
  256. DialModifier_C 
  257. DialModifier_D 
  258. ;;; ==================
  259. ;;;  Dial Translation 
  260. ;;; ==================
  261. ;
  262. ; AceComm can filter or translate phone numbers 
  263. ; To strip  1-612-  from  numbers:
  264. ; 1-612-        
  265. ; To modify  1-612-  into 1-     :
  266. ; 1-612-  1-    
  267. ; To modify  1-555-232-4000  into 1-555-232-4111  :
  268. ; 1-555-232-4000  1-555-232-4111    
  269. ;
  270. DialTrans_A
  271. DialTrans_B 1-602-846-4563 1-602-846-2940
  272. DialTrans_C 
  273. DialTrans_D 
  274. DialTrans_E
  275. Request_file REQUEST.LST
  276. Files_file MGP-SOFT.ZIP
  277. About_file ABOUT.FIL
  278. ;;; ========================================================
  279. ;;;  Auto Engage Sequence Triggers, Associated Macro Stacks 
  280. ;;; ========================================================
  281. PreAutoM 
  282. PostAutoM 
  283. AutoDnld_A rz^M**
  284. AutoDnld_B HS*^B
  285. AutoDnld_C ┬Θ═∩Σσφ
  286. AutoDnld_D MPt ^V^H
  287. AutoDnld_E 
  288. AutoDnld_F 
  289. AutoDnld_G 
  290. AutoDnld_H 
  291. AutoDnld_I **EMSI_REQA77E
  292. AutoDnld_J **EMSI_IRQ8E08
  293. AutoMacro_A <RecvZmo>
  294. AutoMacro_B <RunProg>HSLINK -P%P -U[DIR_DNLDS] @UPLDS.LST
  295. AutoMacro_C <RunProg>BIMODEM /L%P /R[DIR_DNLDS] Bimodem.Pth
  296. AutoMacro_D <RunProg>MPT P%P N+ F+ R+ R [DIR_DNLDS]
  297. AutoMacro_E 
  298. AutoMacro_F 
  299. AutoMacro_G 
  300. AutoMacro_H 
  301. AutoMacro_I <SendEMSI_CLI>
  302. AutoMacro_J <SendEMSI_ICI>
  303. ;;; ========================================================
  304. ;;;  Auto Log On Sequence Triggers, Associated Macro Stacks 
  305. ;;; ========================================================
  306. AutoLogOn_A is your name:
  307. AutoLogOn_B Your FIRST name:
  308. AutoLogOn_C Host Name:
  309. AutoLogOn_D first name ?
  310. AutoLogOn_E and LAST name:
  311. AutoLogOn_F last name?
  312. AutoLogOn_G first name?
  313. AutoLogOn_