home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PROTOCOL / PROTOCL.ZIP / PROTO024.TXT < prev    next >
Internet Message Format  |  1992-01-24  |  2KB

  1. From:    Bob Juge                               Area: Protocols
  2. To:      Randy Edwards                          18 Jan 92 21:01:52
  3. Subject: External protocol help                 UpdReq 
  4.  
  5.  > RE:    Okay, everything seems fine.  The Ascii00.Ctl and Kermit00.Ctl 
  6.  > RE: are being made -- I've looked at them in the \Max directory.  But 
  7.  > RE: why the *#&%)(@! doesn't the stupid protocols see the *.CTL files 
  8.  > RE: instead of telling me "Can't open ctl file."  Anyone have any 
  9.  > RE: ideas?  Thanks in advance.
  10. %% ASCII protocol.  This is the Opus-compatible OATE transfer module.
  11. % To use, simply uncomment this protocol and place ASCII.EXE in
  12. % your \MAX directory.
  13. %Protocol ASCII(Text)
  14. ;       Type            Batch
  15. ;       Type            Errorlevel
  16. ;       Type            Bi
  17.         Type            Opus
  18.         LogFile         Ascii%K.Log
  19.         ControlFile     Ascii%K.Ctl
  20.         DownloadCmd     Ascii.Exe Ascii.Exe -p%p -b9600 C:\MAX\ASCII%K.CTL
  21.         UploadCmd       Ascii.Exe Ascii.Exe -p%p -b9600 C:\MAX\ASCII%K.CTL
  22.         DownloadString  Send %s
  23.         UploadString    Get %s
  24.         DownloadKeyword Sent
  25.         UploadKeyword   Got
  26.         FilenameWord    1
  27.         DescriptWord    4
  28. End Protocol
  29. %% Kermit protocol.  This is the Opus-compatible OKERMIT transfer module.
  30. % To use, simply uncomment this protocol and place KERMIT.EXE in your
  31. % \MAX directory.
  32. %Protocol Kermit
  33.         Type            Batch
  34. ;       Type            Errorlevel
  35. ;       Type            Bi
  36.         Type            Opus
  37.         LogFile         Kermit%K.Log
  38.         ControlFile     Kermit%K.Ctl
  39.         DownloadCmd     Kermit.Exe Kermit.Exe -p%p -b9600 C:\MAX\KERMIT%K.CTL
  40.         UploadCmd       Kermit.Exe Kermit.Exe -p%p -b9600 C:\MAX\KERMIT%K.CTL
  41.         DownloadString  Send %s
  42.         UploadString    Get %s
  43.         DownloadKeyword Sent
  44.         UploadKeyword   Got
  45.         FilenameWord    1
  46.         DescriptWord    4
  47. End Protocol
  48. This works for me (running with FOSSIL locked at 38400)...
  49.                                         - Bob
  50.  
  51.  
  52. --------------= Brought to you compliments of Plastic Tower  =---------------
  53.  
  54.